Home
last modified time | relevance | path

Searched refs:sqlite3_exec (Results 1 – 12 of 12) sorted by relevance

/external/chromium/chrome/common/
Dsqlite_utils.cc179 rv = sqlite3_exec(db_, command, NULL, NULL, NULL); in BeginCommand()
188 rv = sqlite3_exec(db_, command, NULL, NULL, NULL); in EndCommand()
229 int rv = sqlite3_exec(db_, command, NULL, NULL, NULL); in BeginCommand()
252 sqlite3_exec(db_, "ROLLBACK", NULL, NULL, NULL); in EndCommand()
258 int rv = sqlite3_exec(db_, command, NULL, NULL, NULL); in EndCommand()
/external/chromium/app/sql/
Dconnection.cc208 return sqlite3_exec(db_, sql, NULL, NULL, NULL) == SQLITE_OK; in Execute()
217 return sqlite3_exec(db_, sql, NULL, NULL, NULL) == SQLITE_OK; in ExecuteWithTimeout()
/external/sqlite/dist/
Dshell.c1291 rc = sqlite3_exec(p->db, zQuery, dump_callback, p, pzErrMsg); in run_schema_dump_query()
1299 rc = sqlite3_exec(p->db, zQ2, dump_callback, p, pzErrMsg); in run_schema_dump_query()
1550 sqlite3_exec(p->db, "PRAGMA database_list; ", callback, &data, &zErrMsg); in do_meta_command()
1567 sqlite3_exec(p->db, "PRAGMA writable_schema=ON", 0, 0, 0); in do_meta_command()
1602 sqlite3_exec(p->db, "PRAGMA writable_schema=OFF", 0, 0, 0); in do_meta_command()
1737 sqlite3_exec(p->db, "BEGIN", 0, 0, 0); in do_meta_command()
1780 sqlite3_exec(p->db, zCommit, 0, 0, 0); in do_meta_command()
1791 rc = sqlite3_exec(p->db, in do_meta_command()
1802 rc = sqlite3_exec(p->db, in do_meta_command()
2061 rc = sqlite3_exec(p->db, in do_meta_command()
[all …]
Dshell.c.orig1050 ** This is very similar to SQLite's built-in sqlite3_exec()
1058 /* (not the same as sqlite3_exec) */
1286 rc = sqlite3_exec(p->db, zQuery, dump_callback, p, pzErrMsg);
1294 rc = sqlite3_exec(p->db, zQ2, dump_callback, p, pzErrMsg);
1531 sqlite3_exec(p->db, "PRAGMA database_list; ", callback, &data, &zErrMsg);
1548 sqlite3_exec(p->db, "PRAGMA writable_schema=ON", 0, 0, 0);
1583 sqlite3_exec(p->db, "PRAGMA writable_schema=OFF", 0, 0, 0);
1718 sqlite3_exec(p->db, "BEGIN", 0, 0, 0);
1761 sqlite3_exec(p->db, zCommit, 0, 0, 0);
1772 rc = sqlite3_exec(p->db,
[all …]
Dsqlite3.h.orig302 ** The sqlite3_exec() interface is a convenience wrapper around
307 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
311 ** sqlite3_exec() is not NULL, then it is invoked for each result row
313 ** to sqlite3_exec() is relayed through to the 1st argument of each
314 ** callback invocation. ^If the callback pointer to sqlite3_exec()
319 ** sqlite3_exec(), then execution of the current statement stops and
320 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
325 ** of sqlite3_exec() after the error message string is no longer needed.
326 ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
327 ** occur, then sqlite3_exec() sets the pointer in its 5th parameter to
[all …]
Dsqlite3.h360 SQLITE_API int sqlite3_exec(
Dsqlite3.c.orig845 ** The sqlite3_exec() interface is a convenience wrapper around
850 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
854 ** sqlite3_exec() is not NULL, then it is invoked for each result row
856 ** to sqlite3_exec() is relayed through to the 1st argument of each
857 ** callback invocation. ^If the callback pointer to sqlite3_exec()
862 ** sqlite3_exec(), then execution of the current statement stops and
863 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
868 ** of sqlite3_exec() after the error message string is no longer needed.
869 ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
870 ** occur, then sqlite3_exec() sets the pointer in its 5th parameter to
[all …]
Dsqlite3.c907 SQLITE_API int sqlite3_exec(
65153 rc = sqlite3_exec(db, u.bu.zSql, sqlite3InitCallback, &u.bu.initData, 0);
73979 rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0);
84290 SQLITE_API int sqlite3_exec(
84714 #define sqlite3_exec sqlite3_api->exec
85011 sqlite3_exec,
87312 rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
92420 rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg);
108869 *pRc = sqlite3_exec(db, zSql, 0, 0, 0);
117460 rc = sqlite3_exec(p->db, "SAVEPOINT fts3", 0, 0, 0);
[all …]
/external/sqlite/android/
Dsqlite3_android.cpp561 err = sqlite3_exec(handle, "PRAGMA encoding = 'UTF-16'", 0, 0, 0); in register_android_functions()
/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3ext.h268 #define sqlite3_exec sqlite3_api->exec macro
Dsqlite3.h293 int sqlite3_exec(
/external/javasqlite/src/main/native/
Dsqlite_jni.c1378 rc = sqlite3_exec((sqlite3 *) h->sqlite, sqlstr.result, in Java_SQLite_Database__1exec__Ljava_lang_String_2LSQLite_Callback_2()
1393 rc = sqlite3_exec((sqlite3 *) h->sqlite, sqlstr.result, in Java_SQLite_Database__1exec__Ljava_lang_String_2LSQLite_Callback_2()
1561 rc = sqlite3_exec((sqlite3 *) h->sqlite, s, callback, in Java_SQLite_Database__1exec__Ljava_lang_String_2LSQLite_Callback_2_3Ljava_lang_String_2()
1647 rc = sqlite3_exec((sqlite3 *) h->sqlite, s, callback, in Java_SQLite_Database__1exec__Ljava_lang_String_2LSQLite_Callback_2_3Ljava_lang_String_2()