We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chinese chars use UTF-8 encode
The text was updated successfully, but these errors were encountered:
Can you provide an example or unit test? Thanks
Sorry, something went wrong.
I fixed this bug. Modify neo4j jdbc driver source code like below... --File:org.neo4j.jdbc.rest.RestQueryExecutor.java executeQuery() { .... Representation rep=resource.post(queryNode.toString()); //add line below rep.setCharacterSet(new CharacterSet("utf-8")); .... }
No branches or pull requests
Chinese chars use UTF-8 encode
The text was updated successfully, but these errors were encountered: