Lines Matching defs:sqlite3_step

856 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
962 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
963 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
2204 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2403 ** the handler returns 0 which causes [sqlite3_step()] to return
2783 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2787 ** statement might be re-prepared during [sqlite3_step()] due to a
2789 ** correct authorizer callback remains in place during the [sqlite3_step()].
2793 ** performed during statement evaluation in [sqlite3_step()], unless
2794 ** as stated in the previous paragraph, sqlite3_step() invokes
2879 ** various times when an SQL statement is being run by [sqlite3_step()].
2906 ** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for
2927 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
3215 ** <li> Run the SQL by calling [sqlite3_step()] one or more times.
3363 ** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set
3378 ** original SQL text. This causes the [sqlite3_step()] interface to
3384 ** always used to do, [sqlite3_step()] will automatically recompile the SQL
3389 ** ^When an error occurs, [sqlite3_step()] will return one of the detailed
3391 ** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code
3401 ** a schema change, on the first [sqlite3_step()] call following any change
3599 ** [sqlite3_step()] has been called more recently than [sqlite3_reset()],
3721 ** reprepared by the first call to [sqlite3_step()] for a particular run
3749 ** reprepared by the first call to [sqlite3_step()] for a particular run
3829 ** The details of the behavior of the sqlite3_step() interface depend
3849 ** successfully. sqlite3_step() should not be called again on this virtual
3856 ** sqlite3_step() is called again to retrieve the next row of data.
3859 ** violation) has occurred. sqlite3_step() should not be called again on
3865 ** the more specific error code is returned directly by sqlite3_step().
3875 ** [sqlite3_reset()] was required after sqlite3_step() returned anything
3877 ** sqlite3_step(). Failure to reset the prepared statement using
3879 ** sqlite3_step(). But after version 3.6.23.1, sqlite3_step() began
3886 ** <b>Goofy Interface Alert:</b> In the legacy interface, the sqlite3_step()
3896 ** by sqlite3_step(). The use of the "v2" interface is recommended.
3898 SQLITE_API int sqlite3_step(sqlite3_stmt*);
3964 ** [sqlite3_step()] has returned [SQLITE_ROW] and neither
3967 ** [sqlite3_finalize()] or after [sqlite3_step()] has returned
3969 ** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()]
4096 ** described above, or until [sqlite3_step()] or [sqlite3_reset()] or
4133 ** to [sqlite3_step()] regardless of whether or not the statement has
4158 ** ^If the most recent call to [sqlite3_step(S)] for the
4160 ** or if [sqlite3_step(S)] has never before been called on S,
4163 ** ^If the most recent call to [sqlite3_step(S)] for the
4941 ** completion of the [sqlite3_step()] call that triggered the commit
4943 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
4999 ** completion of the [sqlite3_step()] call that triggered the update hook.
5000 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
6849 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
6922 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
6933 ** by an sqlite3_step() call. ^(If there is a blocking connection, then the
20763 ** (sqlite3_step() etc.).
59470 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
59485 /* On the first call to sqlite3_step(), pSub will hold a NULL. It is
59978 ** be called on an SQL statement before sqlite3_step().
60610 ** Each VDBE holds the result of the most recent sqlite3_step() call
60659 ** to sqlite3_step(). For consistency (since sqlite3_step() was
61883 ** outer sqlite3_step() wrapper procedure.
61892 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
61904 ** previous sqlite3_step() returned something other than a SQLITE_LOCKED
62015 ** This is the top-level implementation of sqlite3_step(). Call
62019 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){
62562 ** as if there had been a schema change, on the first sqlite3_step() call
64095 assert( p->magic==VDBE_MAGIC_RUN ); /* sqlite3_step() verifies this */
64614 ** results. This opcode causes the sqlite3_step() call to terminate
66569 ** to be invalidated whenever sqlite3_step() is called from within
69205 ** (via sqlite3_step()).
69872 rc = sqlite3_step(p->pStmt);
78260 while( sqlite3_step(pStmt)==SQLITE_ROW ){
88795 rc = sqlite3_step(pStmt);
89227 #define sqlite3_step sqlite3_api->step
89534 sqlite3_step,
92236 ** sqlite3_step(). In the new version, the original SQL text is retained
92316 ** sqlite3_step(). In the new version, the original SQL text is retained
94382 ** Then the OP_ResultRow opcode is used to cause sqlite3_step() to
98977 VVA_ONLY( rc = ) sqlite3_step(pStmt);
98993 while( SQLITE_ROW==sqlite3_step(pStmt) ){
114866 sqlite3_step(pStmt);
115549 if( SQLITE_ROW==sqlite3_step(pCsr->pStmt) ){
116589 while( rc==SQLITE_OK && SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){
116834 if( SQLITE_ROW!=sqlite3_step(pCsr->pStmt) ){
120343 if( SQLITE_ROW==sqlite3_step(pStmt) ){
121874 sqlite3_step(pStmt);
121896 if( SQLITE_ROW==sqlite3_step(pStmt) ){
122600 rc = sqlite3_step(pStmt);
122648 sqlite3_step(pStmt);
122679 sqlite3_step(pStmt);
123079 sqlite3_step(pContentInsert);
123128 if( SQLITE_ROW==sqlite3_step(pSelect) ){
123183 if( SQLITE_ROW==sqlite3_step(pNextIdx) ){
123928 sqlite3_step(pStmt);
123956 sqlite3_step(pStmt);
124225 if( SQLITE_ROW==sqlite3_step(pStmt) ){
124389 if( SQLITE_ROW==sqlite3_step(pStmt) ){
124420 if( SQLITE_ROW==sqlite3_step(pStmt) ){
124457 sqlite3_step(pDelete);
124480 sqlite3_step(pDelete);
125073 sqlite3_step(pStmt);
125121 if( sqlite3_step(pStmt)==SQLITE_ROW ){
125151 sqlite3_step(pStmt);
127518 rc = sqlite3_step(pRtree->pReadNode);
127650 sqlite3_step(p);
128203 if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){
128709 sqlite3_step(pRtree->pWriteRowid);
128719 sqlite3_step(pRtree->pWriteParent);
129343 rc = sqlite3_step(pRtree->pReadParent);
129394 sqlite3_step(pRtree->pDeleteNode);
129401 sqlite3_step(pRtree->pDeleteParent);
129651 sqlite3_step(pRtree->pWriteRowid);
129693 sqlite3_step(pRtree->pDeleteRowid);
129803 steprc = sqlite3_step(pRtree->pReadRowid);
129991 if( SQLITE_ROW==sqlite3_step(pStmt) ){