On 12 Mar 2013, at 9:08am, jigyanshu.raj <jigyanshu....@gmail.com> wrote:

> we have using sqlite framework in c#.net. When we are going to insert new
> row value "» InBox «" into table. They had added some extra character "»
> InBox «" with value.

This is a Windows problem.  The double-arrow characters have different codes 
depending on which code page you are using.  You have defined your characters 
using a Windows codepage which isn't Unicode.  SQLite deals only with ASCII and 
Unicode characters.  Either switch to a Unicode page when entering your string 
"» InBox «" or have your program convert from one character encoding to another 
before passing the string to SQLite.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to