sqlite3 调用sqlite3_exec查询数据时callback函数abort问题

前端之家收集整理的这篇文章主要介绍了sqlite3 调用sqlite3_exec查询数据时callback函数abort问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

现象:在sqlite3中使用sqlite3 _exec函数查询数据,调用了callback函数,但是查询到第一组数据后callback返回非零值,造成sqlite3_exec函数返回 sqlITE_ABORT 错误

原因:callback函数没有return 0;

If an sqlite3_exec() callback returns non-zero,the sqlite3_exec() routine returns sqlITE_ABORT without invoking the callback again and without running any subsequent sql statements.

原文链接:https://www.f2er.com/sqlite/201083.html

猜你在找的Sqlite相关文章