Searched refs:sqlite3_step (Results 1 - 9 of 9) sorted by relevance

/external/sqlite/dist/
H A Dshell.c450 while( !pCur->pColumnList || SQLITE_ROW!=sqlite3_step(pCur->pColumnList) ){
453 while( !pCur->pTableList || SQLITE_ROW!=sqlite3_step(pCur->pTableList) ){
457 while( SQLITE_ROW!=sqlite3_step(pCur->pDbList) ){
744 while( SQLITE_ROW==sqlite3_step(pStmt) ){
1804 rc = sqlite3_step(pSelect);
1811 rc = sqlite3_step(pSelect);
1872 rc = sqlite3_step(pStmt);
1914 rc = sqlite3_step(pStmt);
1925 rc = sqlite3_step(pStmt);
2013 rc = sqlite3_step(pTableInf
[all...]
H A Dsqlite3.h.orig276 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
381 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
382 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
1382 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
1581 ** the handler returns 0 which causes [sqlite3_step()] to return
1953 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
1957 ** statement might be re-prepared during [sqlite3_step()] due to a
1959 ** correct authorizer callback remains in place during the [sqlite3_step()].
1963 ** performed during statement evaluation in [sqlite3_step()], unless
1964 ** as stated in the previous paragraph, sqlite3_step() invoke
[all...]
H A Dsqlite3.h276 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
381 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
382 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
1382 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
1581 ** the handler returns 0 which causes [sqlite3_step()] to return
1953 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
1957 ** statement might be re-prepared during [sqlite3_step()] due to a
1959 ** correct authorizer callback remains in place during the [sqlite3_step()].
1963 ** performed during statement evaluation in [sqlite3_step()], unless
1964 ** as stated in the previous paragraph, sqlite3_step() invoke
[all...]
H A Dsqlite3.c.orig800 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
905 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
906 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
1906 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2105 ** the handler returns 0 which causes [sqlite3_step()] to return
2477 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2481 ** statement might be re-prepared during [sqlite3_step()] due to a
2483 ** correct authorizer callback remains in place during the [sqlite3_step()].
2487 ** performed during statement evaluation in [sqlite3_step()], unless
2488 ** as stated in the previous paragraph, sqlite3_step() invoke
[all...]
H A Dsqlite3.c800 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
905 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
906 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
1906 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2105 ** the handler returns 0 which causes [sqlite3_step()] to return
2477 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2481 ** statement might be re-prepared during [sqlite3_step()] due to a
2483 ** correct authorizer callback remains in place during the [sqlite3_step()].
2487 ** performed during statement evaluation in [sqlite3_step()], unless
2488 ** as stated in the previous paragraph, sqlite3_step() invoke
50955 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){ function
76290 #define sqlite3_step macro
[all...]
/external/webkit/WebCore/platform/sql/
H A DSQLiteStatement.cpp81 int error = sqlite3_step(m_statement);
83 LOG(SQLDatabase, "sqlite3_step failed (%i)\nQuery - %s\nError - %s",
/external/webkit/WebKitLibraries/WebCoreSQLite3/
H A Dsqlite3ext.h260 #define sqlite3_step sqlite3_api->step macro
H A Dsqlite3.h177 ** using [sqlite3_step()], then destroyed using [sqlite3_finalize()].
265 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
266 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
366 ** If a callback invokes [sqlite3_exec()] or [sqlite3_step()] recursively,
515 ** causes [sqlite3_step()] to return [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED].
741 ** performed during statement evaluation in [sqlite3_step()].
820 ** at the first [sqlite3_step()] for the evaluation of an SQL statement.
837 ** [sqlite3_step()] and [sqlite3_get_table()]. An example use for this
846 ** If a call to [sqlite3_exec()], [sqlite3_step()], or [sqlite3_get_table()]
858 ** The containing [sqlite3_exec()], [sqlite3_step()], o
[all...]
/external/sqlite/android/
H A Dsqlite3_android.cpp400 err = sqlite3_step(statement);
404 LOGE(" sqlite3_step error %d", err);

Completed in 165 milliseconds