Home | History | Annotate | Download | only in orig

Lines Matching defs:sqlite3_exec

436 ** The sqlite3_exec() interface is a convenience wrapper around
441 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
445 ** sqlite3_exec() is not NULL, then it is invoked for each result row
447 ** sqlite3_exec() is relayed through to the 1st argument of each
448 ** callback invocation. ^If the callback pointer to sqlite3_exec()
453 ** sqlite3_exec(), then execution of the current statement stops and
454 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
459 ** of sqlite3_exec() after the error message string is no longer needed.
460 ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
461 ** occur, then sqlite3_exec() sets the pointer in its 5th parameter to
464 ** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec()
468 ** ^The 2nd argument to the sqlite3_exec() callback function is the
469 ** number of columns in the result. ^The 3rd argument to the sqlite3_exec()
473 ** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the
474 ** sqlite3_exec() callback is an array of pointers to strings where each
478 ** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer
486 ** <li> The application must insure that the 1st parameter to sqlite3_exec()
489 ** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running.
491 ** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running.
494 SQLITE_API int sqlite3_exec(
2018 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2290 ** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access
2293 ** wrapper layer outside of the internal [sqlite3_exec()] call are not
2362 ** sqlite3_exec(db, zSQL, 0, 0, 0);
2390 ** sqlite3_exec(db, zSQL, 0, 0, 0);
2721 ** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for
3339 ** calls [sqlite3_exec()], then the following SQL statement would
68853 ** P1 is the result code returned by sqlite3_exec(), sqlite3_reset(),
69585 ** statement to expire. (Perhaps the function called sqlite3_exec()
73127 rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
85240 rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0);
85902 ** means that the SQL statement will never-run - the sqlite3_exec() call
88110 ** they will persist after the current sqlite3_exec() call returns.
96835 SQLITE_API int sqlite3_exec(
96905 ** sqlite3_exec() returns non-zero, then sqlite3_exec() will
97296 #define sqlite3_exec sqlite3_api->exec
97631 sqlite3_exec,
100897 rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
106874 ** interface routine of sqlite3_exec().
106895 int rc; /* Return code from sqlite3_exec() */
107004 rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg);
122901 ** Return the number of changes in the most recent call to sqlite3_exec().
127359 *pRc = sqlite3_exec(db, zSql, 0, 0, 0);
142344 rc = sqlite3_exec(p->db, "SAVEPOINT fts3", 0, 0, 0);
142348 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
142351 sqlite3_exec(p->db, "ROLLBACK TO fts3", 0, 0, 0);
142352 sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
145480 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0);
147573 rc = sqlite3_exec(pRtree->db, zSql, 0, 0, 0);
147685 rc = sqlite3_exec(db, zCreate, 0, 0, 0);