Lines Matching refs:sqlite3_exec
12866 /* Callback for sqlite3_exec() with query with leading count(*) column.
12922 rc = sqlite3_exec(dbm, zFind, countNonzeros, &i, 0);
12946 rc = sqlite3_exec(dbm, zIdx, 0, 0, p->pzErrmsg);
13233 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr);
13243 rc = sqlite3_exec(p->dbv, z, 0, 0, pzErr);
13288 rc = sqlite3_exec(p->dbv, zDrop, 0, 0, pzErr);
13337 if( zSql ) rc = sqlite3_exec(p->dbv, zSql, 0, 0, pzErrmsg);
13362 rc = sqlite3_exec(p->dbv, zOuter, 0, 0, pzErrmsg);
13622 rc = sqlite3_exec(p->dbv,"DROP TABLE IF EXISTS temp."UNIQUE_TABLE_NAME,0,0,0);
13629 rc = sqlite3_exec(p->dbv, zSql, 0, 0, 0);
13668 rc = sqlite3_exec(p->dbm, "ANALYZE; PRAGMA writable_schema=1", 0, 0, 0);
13715 rc = sqlite3_exec(p->dbv,
13732 rc = sqlite3_exec(p->dbm, "ANALYZE sqlite_schema", 0, 0, 0);
13738 sqlite3_exec(p->db, "DROP TABLE IF EXISTS temp."UNIQUE_TABLE_NAME,0,0,0);
13875 if( zSql ) rc = sqlite3_exec(pNew->dbm, zSql, 0, 0, pzErrmsg);
17005 int rc = sqlite3_exec(db, zSql, 0, 0, 0);
17658 rc = sqlite3_exec(p->dbOut, zSql, 0, 0, 0);
17708 int rc = sqlite3_exec(p->dbOut, zSql, 0, 0, 0);
19133 rc = sqlite3_exec(p->dbIn, "END", 0, 0, 0);
19329 rc = sqlite3_exec(p->dbIn, "END", 0, 0, 0);
20895 ** This is the callback routine from sqlite3_exec() that appends all
20916 sqlite3_exec(p->db,
20956 sqlite3_exec(p->db, "RELEASE selftest_init",0,0,0);
21591 sqlite3_exec(p->db,
22300 ** This is very similar to SQLite's built-in sqlite3_exec()
22579 sqlite3_exec(db, zStmt, 0, 0, 0);
22715 rc = sqlite3_exec(p->db, zQuery, dump_callback, p, &zErr);
22728 rc = sqlite3_exec(p->db, zQ2, dump_callback, p, &zErr);
23543 sqlite3_exec(p->db, zSql, 0, 0, 0);
23648 sqlite3_exec(globalDb, "PRAGMA page_count", 0, 0, 0); /* Load the schema */
24172 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg);
24202 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg);
24235 sqlite3_exec(p->db, "PRAGMA writable_schema=ON;", 0, 0, 0);
24236 sqlite3_exec(newDb, "BEGIN EXCLUSIVE;", 0, 0, 0);
24239 sqlite3_exec(newDb, "COMMIT;", 0, 0, 0);
24240 sqlite3_exec(p->db, "PRAGMA writable_schema=OFF;", 0, 0, 0);
25339 rc = sqlite3_exec(pAr->db, "SAVEPOINT ar;", 0, 0, 0);
25341 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr);
25343 sqlite3_exec(pAr->db, "ROLLBACK TO ar; RELEASE ar;", 0, 0, 0);
25345 rc = sqlite3_exec(pAr->db, "RELEASE ar;", 0, 0, 0);
25441 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr);
25562 sqlite3_exec(pAr->db, "ROLLBACK TO ar; RELEASE ar;", 0, 0, 0);
25953 sqlite3_exec(*pDb,"drop table if exists ColNames;"
25957 rc = sqlite3_exec(*pDb, zTabMake, 0, 0, 0);
25978 rc = sqlite3_exec(*pDb, zDedoctor, 0, 0, 0);
25981 rc = sqlite3_exec(*pDb, zSetReps, 0, 0, 0);
26206 sqlite3_exec(pDest, "PRAGMA synchronous=OFF; PRAGMA journal_mode=OFF;",
26555 sqlite3_exec(p->db, "SAVEPOINT dump; PRAGMA writable_schema=ON", 0, 0, 0);
26583 sqlite3_exec(p->db, "PRAGMA writable_schema=OFF;", 0, 0, 0);
26584 sqlite3_exec(p->db, "RELEASE dump;", 0, 0, 0);
26605 if( p->db ) sqlite3_exec(p->db, "PRAGMA vdbe_trace=OFF;", 0, 0, 0);
26620 sqlite3_exec(p->db, "SELECT name FROM sqlite_schema LIMIT 1", 0, 0, 0);
26621 sqlite3_exec(p->db, "PRAGMA vdbe_trace=ON;", 0, 0, 0);
26838 rc = sqlite3_exec(p->db,
27071 rc = sqlite3_exec(p->db, zCreate, 0, 0, 0);
27143 if( needCommit ) sqlite3_exec(p->db, "BEGIN", 0, 0, 0);
27199 if( needCommit ) sqlite3_exec(p->db, "COMMIT", 0, 0, 0);
27295 rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
27820 sqlite3_exec(p->db, "DROP TABLE IF EXISTS temp.sqlite_parameters;",
27908 sqlite3_exec(p->db, zSql, 0, 0, 0);
28231 rc = sqlite3_exec(p->db, sSelect.z, callback, &data, &zErrMsg);
28549 rc = sqlite3_exec(p->db, zSql, captureOutputCallback, &str, &zErrMsg);
31034 sqlite3_exec(globalDb,"ROLLBACK", 0, 0, 0);
31037 if( 0==rc ) sqlite3_exec(globalDb, "VACUUM", 0, 0, 0);