Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_exec

852 ** The sqlite3_exec() interface is a convenience wrapper around
857 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
861 ** sqlite3_exec() is not NULL, then it is invoked for each result row
863 ** sqlite3_exec() is relayed through to the 1st argument of each
864 ** callback invocation. ^If the callback pointer to sqlite3_exec()
869 ** sqlite3_exec(), then execution of the current statement stops and
870 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
875 ** of sqlite3_exec() after the error message string is no longer needed.
876 ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
877 ** occur, then sqlite3_exec() sets the pointer in its 5th parameter to
880 ** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec()
884 ** ^The 2nd argument to the sqlite3_exec() callback function is the
885 ** number of columns in the result. ^The 3rd argument to the sqlite3_exec()
889 ** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the
890 ** sqlite3_exec() callback is an array of pointers to strings where each
894 ** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer
902 ** <li> The application must insure that the 1st parameter to sqlite3_exec()
905 ** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running.
907 ** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running.
910 SQLITE_API int sqlite3_exec(
2275 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2552 ** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access
2555 ** wrapper layer outside of the internal [sqlite3_exec()] call are not
2624 ** sqlite3_exec(db, zSQL, 0, 0, 0);
2652 ** sqlite3_exec(db, zSQL, 0, 0, 0);
2977 ** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for
3555 ** calls [sqlite3_exec()], then the following SQL statement would
65692 ** P1 is the result code returned by sqlite3_exec(), sqlite3_reset(),
66353 ** statement to expire. (Perhaps the function called sqlite3_exec()
69814 rc = sqlite3_exec(db, u.by.zSql, sqlite3InitCallback, &u.by.initData, 0);
80398 rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0);
81043 ** means that the SQL statement will never-run - the sqlite3_exec() call
82935 ** they will persist after the current sqlite3_exec() call returns.
90100 ** sqlite3_exec() returns immediately with a
90105 ** cause sqlite3_exec() to return immediately
90108 ** any FAIL Sqlite3_exec() returns immediately with a
90872 SQLITE_API int sqlite3_exec(
91320 #define sqlite3_exec sqlite3_api->exec
91629 sqlite3_exec,
94003 rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
99166 ** interface routine of sqlite3_exec().
99187 int rc; /* Return code from sqlite3_exec() */
99296 rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg);
113149 ** Return the number of changes in the most recent call to sqlite3_exec().
117170 *pRc = sqlite3_exec(db, zSql, 0, 0, 0);
128639 rc = sqlite3_exec(p->db, "SAVEPOINT fts3", 0, 0, 0);
128643 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
128646 sqlite3_exec(p->db, "ROLLBACK TO fts3", 0, 0, 0);
128647 sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
130948 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0);
133009 rc = sqlite3_exec(pRtree->db, zSql, 0, 0, 0);
133083 rc = sqlite3_exec(db, zCreate, 0, 0, 0);