如何使用 C API 检查 SQLite 列中的值是否为 NULL?
我正在使用 SQLite 和 C API。 在 C API 上,我可以使用 sqlite3_column_*
函数检查列的结果值。问题是对于值为 NULL 的情况没有函数。当然,我可以使用 sqlite3_column_bytes 函数检查该值,但它可能会导致转换,而我想完全避免转换。
如何检查某行某列的值是否为 NULL?
I'm using SQLite with C API.
On C API, I can check the result value of a column with sqlite3_column_*
functions. the problem is there is no function for the case of the value is NULL
. Of course, I can check the value with sqlite3_column_bytes
function, but it can cause conversion, and I want to avoid conversion at all.
How can I check the value at a column of a row is NULL or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知(并从文档中得知),正确的方法是是使用
sqlite3_column_type()
来检查SQLITE_NULL
。请务必在执行任何可能导致列转换的操作之前执行此操作。
From what I can remember (and tell from the documentation), the correct way to do it is to use
sqlite3_column_type()
to check forSQLITE_NULL
.Just be sure to do it before doing anything that may cause conversion of the column.