现象:在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