On 10/6/15, jonathan <jonathanmejiaa at hotmail.com> wrote: >> Hello my friends, i need your help, i have problems with the use special >> character for example "?" , work with vb net. The problem consist when >> save >> this character in the data base sqlite, this chance in another character. >> I >> hope your help. Thank you. >
SQLite stores all characters exactly as you insert them. It does not make any conversions or transformations on the text (unless you ask it to convert UTF8 to UTF16 or vice versa). So if you are having problems with special characters like "?", the problem will be in wrapper software. Perhaps if you are more specific about how the problem arises, somebody can help you. -- D. Richard Hipp drh at sqlite.org