SQLite CC++ API unsigned char *

SQLite CC++ API unsigned char *,第1张

概述为什么SQLite C/C++ API为文本值返回unsigned char * s而不是更实际的char *类型? 这与the unsigned char问题有些相关,除了SQLite API的决定似乎与为类字符串值给出的传统char *建议相反. 例如: const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol); 从 S 为什么sqlite C/C++ API为文本值返回unsigned char * s而不是更实际的char *类型?

这与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 *所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1157486.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存