/external/chromium/chrome/common/ |
D | sqlite_utils.cc | 179 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/ |
D | connection.cc | 208 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/ |
D | shell.c | 1291 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 …]
|
D | shell.c.orig | 1050 ** 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 …]
|
D | sqlite3.h.orig | 302 ** 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 …]
|
D | sqlite3.h | 360 SQLITE_API int sqlite3_exec(
|
D | sqlite3.c.orig | 845 ** 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 …]
|
D | sqlite3.c | 907 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/ |
D | sqlite3_android.cpp | 561 err = sqlite3_exec(handle, "PRAGMA encoding = 'UTF-16'", 0, 0, 0); in register_android_functions()
|
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
D | sqlite3ext.h | 268 #define sqlite3_exec sqlite3_api->exec macro
|
D | sqlite3.h | 293 int sqlite3_exec(
|
/external/javasqlite/src/main/native/ |
D | sqlite_jni.c | 1378 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()
|