You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1.I'm using the latest version of csharp-sqlite
2.I want to select a row from db ,just like SELECT * FROM test where
name='大',but i can insert '大' to database..
3.大 is a Chinese character.
What is the expected output? What do you see instead?
It expected that will be shown a row there the name='大',but it says
unrecognized token:"'大"
What version of the product are you using? On what operating system?
I'm using csharp-sqlite_3_7_7_1_71.zip ,win7 64bit to develop, and develop for
windows phone 7.1 sdk
Please provide any additional information below.
thank you very much
Original issue reported on code.google.com by sinfias...@163.com on 6 Apr 2012 at 2:18
The text was updated successfully, but these errors were encountered:
It is because tokenize_c.cs casts a unicode char to byte where the higher byte
is lost and the some chinese characters are processed as ascii then caused the
parse error.
I made some small changes where at lease the select of chinese characters works
fine (enough for me), hope this helps to fix this issue and other potential
similar problems.
Original comment by brigh...@gmail.com on 9 Apr 2012 at 1:33
Original issue reported on code.google.com by
sinfias...@163.com
on 6 Apr 2012 at 2:18The text was updated successfully, but these errors were encountered: