sqlite3_bind_text 为空字符串
我使用代码来访问 sqlite
sqlite3_bind_text(statement,1,[myString UTF8String],-1,SQLITE_TRANSIENT);
它有效。 但如果myString为NULL,总是会导致更新表中的记录失败。 (或者什么都没有改变) myStrign为NULL时如何处理?
欢迎大家评论
谢谢
I use the codes to access sqlite
sqlite3_bind_text(statement,1,[myString UTF8String],-1,SQLITE_TRANSIENT);
It works.
But if myString is NULL, it always causes updating the record in table failed.
(or nothing changed)
How to process when myStrign is NULL?
Welcome any comment
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当字符串为 NULL 时,使用 sqlite3_bind_null(statement, 1);。
Use
sqlite3_bind_null(statement, 1);
when your string is NULL.