Delete multiple tables from a single query by separating from semicolon

夙愿已清 提交于 2019-12-01 10:35:40

To make an atomic operation out of multiple statements, use a transaction:

BEGIN;
DELETE FROM Friends;
DELETE FROM Stream;
DELETE FROM Version;
COMMIT;

You have to execute these five commands one by one if you're using sqlite3_prepare_v2; with sqlite3_exec, you can execute them with one call (but sqlite3_exec would not support SQL parameters).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!