如何使用 C API 检查 SQLite 列中的值是否为 NULL?

发布于 2024-12-28 02:57:22 字数 191 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉态萌生 2025-01-04 02:57:22

据我所知(并从文档中得知),正确的方法是是使用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 for SQLITE_NULL.

Just be sure to do it before doing anything that may cause conversion of the column.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文