Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:SQLITE_DONE

952 #define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
3643 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3654 ** ^[SQLITE_DONE] means that the statement has finished executing
3676 ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
3965 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
6480 ** from source to destination, then it returns [SQLITE_DONE].
6483 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6516 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
6531 ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
6536 ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any
6786 ** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value
37882 ** If the journal header file appears to be corrupted, SQLITE_DONE is
37901 ** point, return SQLITE_DONE.
37905 return SQLITE_DONE;
37911 ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise,
37920 return SQLITE_DONE;
37968 return SQLITE_DONE;
38513 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
38578 return SQLITE_DONE;
38587 return SQLITE_DONE;
39068 ** pager_playback_one_page() call returns SQLITE_DONE or an IO error
39079 if( rc==SQLITE_DONE ){
39135 if( rc==SQLITE_DONE ){
39660 assert( rc!=SQLITE_DONE );
39675 assert( rc!=SQLITE_DONE );
39690 assert( rc!=SQLITE_DONE );
39709 assert( rc!=SQLITE_DONE );
42670 assert(rc!=SQLITE_DONE);
49973 ** point in calling this function again), return SQLITE_DONE.
49981 ** it returns SQLITE_DONE or an error, and that nFin is the
50001 return SQLITE_DONE;
50094 ** SQLITE_DONE is returned. If it is not finished, but no error occurred,
50104 rc = SQLITE_DONE;
50166 if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){
50856 rc = SQLITE_DONE;
50862 assert( next==0 || rc==SQLITE_DONE );
50877 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
55665 rc = SQLITE_DONE;
55676 if( rc==SQLITE_DONE
55771 rc = SQLITE_DONE;
55833 rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc;
55950 ** checks this assumption - (p->rc) should be set to either SQLITE_DONE
58279 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
58309 rc = SQLITE_DONE;
60682 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
60762 if( rc==SQLITE_DONE ){
60782 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
60785 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
60786 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
63182 rc = p->rc ? SQLITE_ERROR : SQLITE_DONE;
65098 rc = SQLITE_DONE;
67829 if( rc==SQLITE_DONE ){
68527 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
77045 pParse->rc = SQLITE_DONE;
86389 (SQLITE_DONE==rc && !callbackIsInit
89675 if( pParse->rc==SQLITE_DONE ) pParse->rc = SQLITE_OK;
106820 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
110764 if( rc==SQLITE_DONE ){
110771 if( rc==SQLITE_DONE ){
110797 if( rc==SQLITE_DONE ){
110821 if( rc==SQLITE_DONE ){
110847 * SQLITE_ROW if a page is returned, SQLITE_DONE if out of pages,
110860 * interiorCursorNextPage() could still return SQLITE_DONE. This
110991 * SQLITE_ROW with the page in *ppPage, or SQLITE_DONE if out of
111029 return SQLITE_DONE;
111334 * SQLITE_DONE if all pages in the tree were exhausted.
111416 * a leaf page is found, SQLITE_DONE when no more leaves exist, or any
111421 return SQLITE_DONE;
111429 assert( rc==SQLITE_DONE );
111517 if( rc!=SQLITE_DONE && rc!=SQLITE_ROW ){
111894 * SQLITE_DONE to indicate whether there is further data to consider.
111966 if( rc==SQLITE_DONE ){
112756 /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time.
112840 ** "OUT" variables identified below, or SQLITE_DONE to indicate that
115254 if( rc==SQLITE_DONE ) rc = rc2;
116508 case SQLITE_DONE:
117500 if( rc==SQLITE_DONE ){
117588 return SQLITE_DONE;
117647 rc = SQLITE_DONE;
117657 return SQLITE_DONE;
117884 if( rc==SQLITE_DONE && pRet && isRequirePhrase ){
117888 if( rc==SQLITE_DONE ){
119171 return SQLITE_DONE;
119893 return SQLITE_DONE;
120018 ** (i.e. SQLITE_DONE).
120505 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
120827 ** SQLITE_DONE. Otherwise, an SQLite error code.
122137 ** segment in the database, SQLITE_DONE is returned immediately.
122159 rc = SQLITE_DONE;
122372 if( rc==SQLITE_DONE ){
122503 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
123275 if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; }
123277 nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet;
123342 if( rc==SQLITE_DONE ){
124199 }else if( rc==SQLITE_DONE ){
124204 if( rc==SQLITE_DONE ){
124214 assert( rc!=SQLITE_DONE );
128201 return SQLITE_DONE;