Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_step

853 ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
959 #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
960 #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
2275 ** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
2474 sqlite3_step()] to return
2854 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2858 ** statement might be re-prepared during [sqlite3_step()] due to a
2860 ** correct authorizer callback remains in place during the [sqlite3_step()].
2864 ** performed during statement evaluation in [sqlite3_step()], unless
2865 ** as stated in the previous paragraph, sqlite3_step() invokes
2950 ** various times when an SQL statement is being run by [sqlite3_step()].
2977 ** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for
2998 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
3310 ** <li> Run the SQL by calling [sqlite3_step()] one or more times.
3459 ** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set
3474 ** original SQL text. This causes the [sqlite3_step()] interface to
3480 ** always used to do, [sqlite3_step()] will automatically recompile the SQL
3485 ** ^When an error occurs, [sqlite3_step()] will return one of the detailed
3487 ** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code
3497 ** a schema change, on the first [sqlite3_step()] call following any change
3581 ** [sqlite3_step(S)] but has not run to completion and/or has not
3721 ** [sqlite3_step()] has been called more recently than [sqlite3_reset()],
3843 ** reprepared by the first call to [sqlite3_step()] for a particular run
3871 ** reprepared by the first call to [sqlite3_step()] for a particular run
3951 ** The details of the behavior of the sqlite3_step() interface depend
3971 ** successfully. sqlite3_step() should not be called again on this virtual
3978 ** sqlite3_step() is called again to retrieve the next row of data.
3981 ** violation) has occurred. sqlite3_step() should not be called again on
3987 ** the more specific error code is returned directly by sqlite3_step().
3997 ** [sqlite3_reset()] was required after sqlite3_step() returned anything
3999 ** sqlite3_step(). Failure to reset the prepared statement using
4001 ** sqlite3_step(). But after version 3.6.23.1, sqlite3_step() began
4008 ** <b>Goofy Interface Alert:</b> In the legacy interface, the sqlite3_step()
4018 ** by sqlite3_step(). The use of the "v2" interface is recommended.
4020 SQLITE_API int sqlite3_step(sqlite3_stmt*);
4032 ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P)
4033 ** will return non-zero if previous call to [sqlite3_step](P) returned
4092 ** [sqlite3_step()] has returned [SQLITE_ROW] and neither
4095 ** [sqlite3_finalize()] or after [sqlite3_step()] has returned
4097 ** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()]
4224 ** described above, or until [sqlite3_step()] or [sqlite3_reset()] or
4261 ** to [sqlite3_step()] regardless of whether or not the statement has
4286 ** ^If the most recent call to [sqlite3_step(S)] for the
4288 ** or if [sqlite3_step(S)] has never before been called on S,
4291 ** ^If the most recent call to [sqlite3_step(S)] for the
5100 ** completion of the [sqlite3_step()] call that triggered the commit
5103 ** or merely calling [sqlite3_prepare_v2()] and [sqlite3_step()] will modify
5159 ** completion of the [sqlite3_step()] call that triggered the update hook.
5160 ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
7087 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
7160 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
7171 ** by an sqlite3_step() call. ^(If there is a blocking connection, then the
21193 ** (sqlite3_step() etc.).
60686 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
60701 /* On the first call to sqlite3_step(), pSub will hold a NULL. It is
61204 ** be called on an SQL statement before sqlite3_step().
61817 ** Each VDBE holds the result of the most recent sqlite3_step() call
61881 ** to sqlite3_step(). For consistency (since sqlite3_step() was
63097 ** outer sqlite3_step() wrapper procedure.
63106 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
63118 ** previous sqlite3_step() returned something other than a SQLITE_LOCKED
63229 ** This is the top-level implementation of sqlite3_step(). Call
63233 SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){
63776 ** as if there had been a schema change, on the first sqlite3_step() call
65431 assert( p->magic==VDBE_MAGIC_RUN ); /* sqlite3_step() verifies this */
65966 ** results. This opcode causes the sqlite3_step() call to terminate
67930 ** to be invalidated whenever sqlite3_step() is called from within
70577 ** (via sqlite3_step()).
71249 rc = sqlite3_step(p->pStmt);
80220 while( sqlite3_step(pStmt)==SQLITE_ROW ){
80252 while( sqlite3_step(pStmt)==SQLITE_ROW ){
90887 rc = sqlite3_step(pStmt);
91340 #define sqlite3_step sqlite3_api->step
91647 sqlite3_step,
94401 ** sqlite3_step(). In the new version, the original SQL text is retained
94481 ** sqlite3_step(). In the new version, the original SQL text is retained
96557 ** Then the OP_ResultRow opcode is used to cause sqlite3_step() to
101172 VVA_ONLY( rc = ) sqlite3_step(pStmt);
101188 while( SQLITE_ROW==sqlite3_step(pStmt) ){
117322 sqlite3_step(pStmt);
118208 sqlite3_step(pCsr->pStmt) ){
119293 while( rc==SQLITE_OK && SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){
119548 if( SQLITE_ROW!=sqlite3_step(pCsr->pStmt) ){
123169 if( SQLITE_ROW==sqlite3_step(pStmt) ){
124700 sqlite3_step(pStmt);
124722 if( SQLITE_ROW==sqlite3_step(pStmt) ){
125431 rc = sqlite3_step(pStmt);
125479 sqlite3_step(pStmt);
125513 sqlite3_step(pStmt);
125991 sqlite3_step(pContentInsert);
126051 if( SQLITE_ROW==sqlite3_step(pSelect) ){
126114 if( SQLITE_ROW==sqlite3_step(pNextIdx) ){
126867 sqlite3_step(pStmt);
126895 sqlite3_step(pStmt);
127164 if( SQLITE_ROW==sqlite3_step(pStmt) ){
127333 if( SQLITE_ROW==sqlite3_step(pStmt) ){
127372 if( SQLITE_ROW==sqlite3_step(pStmt) ){
127410 sqlite3_step(pDelete);
127437 sqlite3_step(pDelete);
128061 sqlite3_step(pStmt);
128109 if( sqlite3_step(pStmt)==SQLITE_ROW ){
128139 sqlite3_step(pStmt);
128157 while( sqlite3_step(pAllLangid)==SQLITE_ROW ){
128220 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){
130631 rc = sqlite3_step(pRtree->pReadNode);
130763 sqlite3_step(p);
131316 if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){
131827 sqlite3_step(pRtree->pWriteRowid);
131837 sqlite3_step(pRtree->pWriteParent);
132461 rc = sqlite3_step(pRtree->pReadParent);
132512 sqlite3_step(pRtree->pDeleteNode);
132519 sqlite3_step(pRtree->pDeleteParent);
132769 sqlite3_step(pRtree->pWriteRowid);
132811 sqlite3_step(pRtree->pDeleteRowid);
132921 steprc = sqlite3_step(pRtree->pReadRowid);
133109 if( SQLITE_ROW==sqlite3_step(pStmt) ){