Skip to content
New issue

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

error with query result include Chinese chars #5

Open
fictionking opened this issue Jul 23, 2012 · 2 comments
Open

error with query result include Chinese chars #5

fictionking opened this issue Jul 23, 2012 · 2 comments

Comments

@fictionking
Copy link

Chinese chars use UTF-8 encode

@jexp
Copy link
Collaborator

jexp commented Jul 23, 2012

Can you provide an example or unit test?
Thanks

@fictionking
Copy link
Author

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"));
     ....
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants