Home | History | Annotate | Download | only in orig

Lines Matching defs:SQLITE_DONE

544 #define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
3749 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3760 ** ^[SQLITE_DONE] means that the statement has finished executing
3782 ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
3822 ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P)
4077 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
6908 ** from source to destination, then it returns [SQLITE_DONE].
6911 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6944 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
6959 ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
6964 ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any
7231 ** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value
41733 ** If the journal header file appears to be corrupted, SQLITE_DONE is
41752 ** point, return SQLITE_DONE.
41756 return SQLITE_DONE;
41762 ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise,
41771 return SQLITE_DONE;
41819 return SQLITE_DONE;
42382 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
42447 return SQLITE_DONE;
42456 return SQLITE_DONE;
42958 ** pager_playback_one_page() call returns SQLITE_DONE or an IO error
42969 if( rc==SQLITE_DONE ){
43027 if( rc==SQLITE_DONE ){
43564 assert( rc!=SQLITE_DONE );
43579 assert( rc!=SQLITE_DONE );
43594 assert( rc!=SQLITE_DONE );
43613 assert( rc!=SQLITE_DONE );
46830 assert(rc!=SQLITE_DONE);
54553 ** calling this function again), return SQLITE_DONE. Or, if an error
54560 ** were this function called until it returns SQLITE_DONE.
54563 ** caller will keep calling incrVacuumStep() until it returns SQLITE_DONE
54580 return SQLITE_DONE;
54686 ** SQLITE_DONE is returned. If it is not finished, but no error occurred,
54696 rc = SQLITE_DONE;
54715 rc = SQLITE_DONE;
54763 if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){
55409 rc = SQLITE_DONE;
55415 assert( next==0 || rc==SQLITE_DONE );
55430 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
60478 rc = SQLITE_DONE;
60489 if( rc==SQLITE_DONE ){
60494 if( rc==SQLITE_OK || rc==SQLITE_DONE ){
60610 rc = SQLITE_DONE;
60673 rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc;
60800 ** checks this assumption - (p->rc) should be set to either SQLITE_DONE
63547 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
63577 rc = SQLITE_DONE;
66625 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
66708 if( rc==SQLITE_DONE ){
66728 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
66731 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
66732 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
68937 rc = p->rc ? SQLITE_ERROR : SQLITE_DONE;
70989 rc = SQLITE_DONE;
73898 VdbeBranchTaken(rc==SQLITE_DONE,2);
73899 if( rc==SQLITE_DONE ){
74630 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
86315 pParse->rc = SQLITE_DONE;
96878 (SQLITE_DONE==rc && !callbackIsInit
101195 if( pParse->rc==SQLITE_DONE ) pParse->rc = SQLITE_OK;
121736 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
123316 case SQLITE_DONE: zName = "SQLITE_DONE"; break;
126311 /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time.
126395 ** "OUT" variables identified below, or SQLITE_DONE to indicate that
129639 if( rc==SQLITE_DONE ) rc = rc2;
130369 case SQLITE_DONE:
133425 }else if( i && rc==SQLITE_DONE ){
133492 ** The second pass, in the block that begins "if( rc==SQLITE_DONE )" below,
133531 if( rc==SQLITE_DONE ){
133615 return SQLITE_DONE;
133686 if( rc==SQLITE_OK && !*ppExpr ){ rc = SQLITE_DONE; }
133693 return SQLITE_DONE;
133910 if( rc==SQLITE_DONE && pRet && isRequirePhrase ){
133914 if( rc==SQLITE_DONE ){
135490 return SQLITE_DONE;
136215 return SQLITE_DONE;
136566 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
136856 ** (i.e. SQLITE_DONE).
137552 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
137997 ** SQLITE_DONE. Otherwise, an SQLite error code.
139842 ** segment in the database, SQLITE_DONE is returned immediately.
139882 rc = SQLITE_DONE;
139949 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
139967 }else if( rc==SQLITE_DONE ){
140149 if( rc==SQLITE_DONE ){
140162 return (rc==SQLITE_OK && bReturnDone && bSeenDone) ? SQLITE_DONE : rc;
141904 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
142075 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
142347 if( rc==SQLITE_OK || rc==SQLITE_DONE ){
142945 if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; }
142947 nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet;
143022 if( rc==SQLITE_DONE ){
143795 rc = SQLITE_DONE;
143812 }else if( rc==SQLITE_DONE && pTab->zContentTbl==0 ){
143817 if( rc==SQLITE_DONE ){
143827 assert( rc!=SQLITE_DONE );
144212 ** Return SQLITE_DONE early if this takes us all the way to the end of
144219 if( zStart>=zTerm ) return SQLITE_DONE;
148816 return SQLITE_DONE;