/external/chromium/chrome/common/ |
sqlite_utils.cc | 179 rv = sqlite3_exec(db_, command, NULL, NULL, NULL); 188 rv = sqlite3_exec(db_, command, NULL, NULL, NULL); 229 int rv = sqlite3_exec(db_, command, NULL, NULL, NULL); 252 sqlite3_exec(db_, "ROLLBACK", NULL, NULL, NULL); 258 int rv = sqlite3_exec(db_, command, NULL, NULL, NULL);
|
/frameworks/base/core/jni/ |
android_database_SQLiteDatabase.cpp | 278 err = sqlite3_exec(handle, createSql, NULL, NULL, NULL); 313 err = sqlite3_exec(handle, "BEGIN TRANSACTION", NULL, NULL, NULL); 327 err = sqlite3_exec(handle, "DELETE FROM " ANDROID_TABLE, NULL, NULL, NULL); 356 err = sqlite3_exec(handle, "REINDEX LOCALIZED", NULL, NULL, NULL); 364 err = sqlite3_exec(handle, "COMMIT TRANSACTION", NULL, NULL, NULL); 373 sqlite3_exec(handle, "ROLLBACK TRANSACTION", NULL, NULL, NULL);
|
android_database_SQLiteStatement.cpp | 246 int err = sqlite3_exec(handle, sqlString, NULL, NULL, NULL);
|
/external/chromium/app/sql/ |
connection.cc | 208 return sqlite3_exec(db_, sql, NULL, NULL, NULL) == SQLITE_OK; 217 return sqlite3_exec(db_, sql, NULL, NULL, NULL) == SQLITE_OK;
|
/external/sqlite/dist/ |
shell.c | 1055 ** This is very similar to SQLite's built-in sqlite3_exec() 1063 /* (not the same as sqlite3_exec) */ [all...] |
shell.c.orig | 1050 ** This is very similar to SQLite's built-in sqlite3_exec() 1058 /* (not the same as sqlite3_exec) */ [all...] |
sqlite3.c | 849 ** The sqlite3_exec() interface is a convenience wrapper around 854 ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded, 858 ** sqlite3_exec() is not NULL, then it is invoked for each result row 860 ** to sqlite3_exec() is relayed through to the 1st argument of each 861 ** callback invocation. ^If the callback pointer to sqlite3_exec() 866 ** sqlite3_exec(), then execution of the current statement stops and 867 ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec() 872 ** of sqlite3_exec() after the error message string is no longer needed. 873 ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors 874 ** occur, then sqlite3_exec() sets the pointer in its 5th parameter t 84714 #define sqlite3_exec macro [all...] |
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 t [all...] |
sqlite3.h | 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 t [all...] |
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 t [all...] |
/external/sqlite/android/ |
sqlite3_android.cpp | 561 err = sqlite3_exec(handle, "PRAGMA encoding = 'UTF-16'", 0, 0, 0);
|
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
sqlite3ext.h | 268 #define sqlite3_exec sqlite3_api->exec macro
|
sqlite3.h | 252 ** The sqlite3_exec() interface is a convenient way of running one or more 254 ** SQL statements are passed in as the second parameter to sqlite3_exec(). 271 ** The sqlite3_exec() interface is implemented in terms of 273 ** The sqlite3_exec() routine does nothing to the database that cannot be done 276 ** The first parameter to [sqlite3_exec()] must be an valid and open 280 ** [sqlite3_exec()] is running. 286 ** The SQL statement text in the 2nd parameter to [sqlite3_exec()] 287 ** must remain unchanged while [sqlite3_exec()] is running. 293 int sqlite3_exec( [all...] |
/external/javasqlite/src/main/native/ |
sqlite_jni.c | 1378 rc = sqlite3_exec((sqlite3 *) h->sqlite, sqlstr.result, 1393 rc = sqlite3_exec((sqlite3 *) h->sqlite, sqlstr.result, [all...] |