Searched refs:sqlite3_prepare_v2 (Results 1 – 8 of 8) sorted by relevance
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
D | sqlite3ext.h | 238 #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 macro 282 #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 macro
|
D | sqlite3.h | 1026 int sqlite3_prepare_v2(
|
/external/sqlite/android/ |
D | sqlite3_android.cpp | 307 err = sqlite3_prepare_v2(handle, sql, -1, &statement, NULL); in tokenize()
|
/external/sqlite/dist/ |
D | sqlite3.h.orig | 196 ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and 276 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()], 1893 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()], 1903 ** then the [sqlite3_prepare_v2()] or equivalent call that triggered 1908 ** [sqlite3_prepare_v2()] or equivalent call that triggered the 1953 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their 1956 ** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the 1965 ** sqlite3_prepare_v2() to reprepare a statement after a schema change. 2078 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their 2237 ** <li> Create the object using [sqlite3_prepare_v2()] or a related [all …]
|
D | sqlite3.h | 2436 SQLITE_API int sqlite3_prepare_v2(
|
D | shell.c | 1856 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zLeftover); in shell_exec()
|
D | sqlite3.c | 2960 SQLITE_API int sqlite3_prepare_v2( 76268 #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 76314 #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 76606 sqlite3_prepare_v2, 79145 SQLITE_API int sqlite3_prepare_v2( 100613 rc = sqlite3_prepare_v2(p->db, zSql, -1, &pCsr->pStmt, 0); 101967 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); 103495 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); 103518 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); 104097 rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, NULL); [all …]
|
D | sqlite3.c.orig | 720 ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and 800 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()], 2417 ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()], 2427 ** then the [sqlite3_prepare_v2()] or equivalent call that triggered 2432 ** [sqlite3_prepare_v2()] or equivalent call that triggered the 2477 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their 2480 ** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the 2489 ** sqlite3_prepare_v2() to reprepare a statement after a schema change. 2602 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their 2761 ** <li> Create the object using [sqlite3_prepare_v2()] or a related [all …]
|