Lines Matching refs:sqlite3_exec

10306 /* Callback for sqlite3_exec() with query with leading count(*) column.
10362 rc = sqlite3_exec(dbm, zFind, countNonzeros, &i, 0);
10386 rc = sqlite3_exec(dbm, zIdx, 0, 0, p->pzErrmsg);
10673 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr);
10683 rc = sqlite3_exec(p->dbv, z, 0, 0, pzErr);
10728 rc = sqlite3_exec(p->dbv, zDrop, 0, 0, pzErr);
10777 if( zSql ) rc = sqlite3_exec(p->dbv, zSql, 0, 0, pzErrmsg);
10802 rc = sqlite3_exec(p->dbv, zOuter, 0, 0, pzErrmsg);
11061 rc = sqlite3_exec(p->dbv,"DROP TABLE IF EXISTS temp."UNIQUE_TABLE_NAME,0,0,0);
11068 rc = sqlite3_exec(p->dbv, zSql, 0, 0, 0);
11107 rc = sqlite3_exec(p->dbm, "ANALYZE; PRAGMA writable_schema=1", 0, 0, 0);
11154 rc = sqlite3_exec(p->dbv,
11171 rc = sqlite3_exec(p->dbm, "ANALYZE sqlite_schema", 0, 0, 0);
11174 sqlite3_exec(p->db, "DROP TABLE IF EXISTS temp."UNIQUE_TABLE_NAME,0,0,0);
11215 if( zSql ) rc = sqlite3_exec(pNew->dbm, zSql, 0, 0, pzErrmsg);
13145 int rc = sqlite3_exec(db, zSql, 0, 0, 0);
13795 rc = sqlite3_exec(p->dbOut, zSql, 0, 0, 0);
13845 int rc = sqlite3_exec(p->dbOut, zSql, 0, 0, 0);
15264 rc = sqlite3_exec(p->dbIn, "END", 0, 0, 0);
15460 rc = sqlite3_exec(p->dbIn, "END", 0, 0, 0);
16946 ** This is the callback routine from sqlite3_exec() that appends all
16967 sqlite3_exec(p->db,
17007 sqlite3_exec(p->db, "RELEASE selftest_init",0,0,0);
17571 sqlite3_exec(p->db,
18271 ** This is very similar to SQLite's built-in sqlite3_exec()
18556 sqlite3_exec(db, zStmt, 0, 0, 0);
18692 rc = sqlite3_exec(p->db, zQuery, dump_callback, p, &zErr);
18705 rc = sqlite3_exec(p->db, zQ2, dump_callback, p, &zErr);
19568 sqlite3_exec(p->db, zSql, 0, 0, 0);
19667 sqlite3_exec(globalDb, "PRAGMA page_count", 0, 0, 0); /* Load the schema */
20182 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg);
20211 sqlite3_exec(newDb, (const char*)zSql, 0, 0, &zErrMsg);
20245 sqlite3_exec(p->db, "PRAGMA writable_schema=ON;", 0, 0, 0);
20246 sqlite3_exec(newDb, "BEGIN EXCLUSIVE;", 0, 0, 0);
20249 sqlite3_exec(newDb, "COMMIT;", 0, 0, 0);
20250 sqlite3_exec(p->db, "PRAGMA writable_schema=OFF;", 0, 0, 0);
21343 rc = sqlite3_exec(pAr->db, "SAVEPOINT ar;", 0, 0, 0);
21345 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr);
21347 sqlite3_exec(pAr->db, "ROLLBACK TO ar; RELEASE ar;", 0, 0, 0);
21349 rc = sqlite3_exec(pAr->db, "RELEASE ar;", 0, 0, 0);
21445 rc = sqlite3_exec(pAr->db, zSql, 0, 0, &zErr);
21566 sqlite3_exec(pAr->db, "ROLLBACK TO ar; RELEASE ar;", 0, 0, 0);
21925 sqlite3_exec(*pDb,"drop table if exists ColNames;"
21928 rc = sqlite3_exec(*pDb, zTabMake, 0, 0, 0);
21949 rc = sqlite3_exec(*pDb, zDedoctor, 0, 0, 0);
21952 rc = sqlite3_exec(*pDb, zSetReps, 0, 0, 0);
22115 sqlite3_exec(pDest, "PRAGMA synchronous=OFF; PRAGMA journal_mode=OFF;",
22447 sqlite3_exec(p->db, "SAVEPOINT dump; PRAGMA writable_schema=ON", 0, 0, 0);
22474 sqlite3_exec(p->db, "PRAGMA writable_schema=OFF;", 0, 0, 0);
22475 sqlite3_exec(p->db, "RELEASE dump;", 0, 0, 0);
22496 if( p->db ) sqlite3_exec(p->db, "PRAGMA vdbe_trace=OFF;", 0, 0, 0);
22511 sqlite3_exec(p->db, "SELECT name FROM sqlite_schema LIMIT 1", 0, 0, 0);
22512 sqlite3_exec(p->db, "PRAGMA vdbe_trace=ON;", 0, 0, 0);
22731 rc = sqlite3_exec(p->db,
22976 rc = sqlite3_exec(p->db, zCreate, 0, 0, 0);
23020 if( needCommit ) sqlite3_exec(p->db, "BEGIN", 0, 0, 0);
23069 if( needCommit ) sqlite3_exec(p->db, "COMMIT", 0, 0, 0);
23160 rc = sqlite3_exec(p->db, zSql, 0, 0, 0);
23672 sqlite3_exec(p->db, "DROP TABLE IF EXISTS temp.sqlite_parameters;",
23760 sqlite3_exec(p->db, zSql, 0, 0, 0);
24068 rc = sqlite3_exec(p->db, sSelect.z, callback, &data, &zErrMsg);
24394 rc = sqlite3_exec(p->db, zSql, captureOutputCallback, &str, &zErrMsg);
26522 if( 0==rc ) rc = sqlite3_exec(globalDb, "VACUUM", 0, 0, 0);