| 2676 | } |
| 2677 | |
| 2678 | static void reset_stmts(SP sp) |
| 2679 | { |
| 2680 | dbstmt_t *dbstmt, *tmp; |
| 2681 | LIST_FOREACH_SAFE(dbstmt, &sp->dbstmts, entries, tmp) { |
| 2682 | reset_stmt(sp, dbstmt); |
| 2683 | } |
| 2684 | sqlite3UnlockStmtTablesRemotes(sp->clnt); |
| 2685 | } |
| 2686 | |
| 2687 | static int db_begin(Lua L) |
| 2688 | { |
no test coverage detected