I've created a sqlite database with encoding UTF-8(default).
Then I use the following statement to insert data:
strcpy(sql,"insert into blog(title) values('呵呵')");
sqlite3_exec(db,sql,0,0,0);
then I open the sqlite database with tool called SQLite Developer the value of title field shows ºǺ� garbage code under Data encoding:UNICODE.
then I changed Data encoding to ANSI, value of title shows right.
As I know the sqlite3_exec prototype is :
int sqlite3_exec(
sqlite3*, /* An open database */
const char *sql, /* SQL to be evaluated */
int (*callback)(void*,int,char**,char**), /* Callback function */
void *, /* 1st argument to callback */
char **errmsg /* Error msg written here */
);
I still try to pass wchar_t type to sql,but still won't work it out.
My Visual C++ project already defined UNOCODE & _UNICODE, So my question is: how to store UTF-8 encoding data to sqlite3 using Visual C++?
Update(question solved)
I use iconv to convert GBK encoding to UTF-8 inspired by msandiford. Thanks msandiford so much.
char* pOut;
char* pIn;
size_t inLen,outLen=2000;
strcpy(sql,"insert into blog(title) values('呵呵')");
string strSQL = sql;
char* sql2 = (char*)malloc(2000);
memset(sql2,0,2000);
pOut = &sql2[0];
inLen = strlen(strSQL.c_str());
pIn = const_cast<char*>(strSQL.c_str());
iconv_t g2u8 = iconv_open("UTF-8","GBK");
iconv(g2u8,(const char**)&pIn,&inLen,&pOut,&outLen);
sqlite3_exec(db,sql2,0,0,0);
strcpy(sql,"insert into blog (title) values ('\xE5\x91\xB5\xE5\x91\xB5')");? My guess is that your editor (visual studio) is not encoding the source file in UTF-8. – msandiford Jan 6 at 5:40strcpy(sql,"insert into blog(title) values('\xE5\x91\xB5\xE5\x91\xB5')");UTF-8 Data inserted right! bingo! After changing file encoding from ANSI to UTF-8 and compilestrcpy(sql,"insert into blog(title) values('呵呵')");also works fine. But is that mean I have to change all *.cpp *.h file to UTF-8 if sqlite library is used in my project? Is there a way not to change file coding? – tunpishuang Jan 6 at 6:00