这与the unsigned char问题有些相关,除了sqlite API的决定似乎与为类字符串值给出的传统char *建议相反.
例如:
const unsigned char *sqlite3_column_text(sqlite3_stmt*,int iCol);解决方法 从 SQLite documentation:
(H13821) The sqlite3_column_text(S,N) interface converts the Nth column in the current row of the result set for the prepared statement S into a zero-terminated UTF-8 string and returns a pointer to that string.
UTF-8希望字节值范围从0x00到0xFF. char的范围可以是-0x80到0x7F(有符号)或0x00到0xFF(无符号).强制无符号允许正确编码UTF-8字符串.
总结以上是内存溢出为你收集整理的SQLite C/C++ API unsigned char *全部内容,希望文章能够帮你解决SQLite C/C++ API unsigned char *所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)