• Home
  • Raw
  • Download

Lines Matching refs:SQLITE_ROW

905 #define SQLITE_ROW         100  /* sqlite3_step() has another row ready */
3339 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3355 ** ^If the SQL statement being executed returns any data, then [SQLITE_ROW]
3448 ** [sqlite3_step()] has returned [SQLITE_ROW] and neither
3452 ** something other than [SQLITE_ROW], the results are undefined.
3626 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
48645 rc = SQLITE_ROW;
50902 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){
50925 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
50928 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
50929 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
52529 ** SQLITE_ROW.
53506 ** with an SQLITE_ROW return code and it sets up the sqlite3_stmt
53564 /* Return SQLITE_ROW
53567 rc = SQLITE_ROW;
58513 if( rc!=SQLITE_ROW ){
58522 if( rc==SQLITE_ROW ){
65620 while( sqlite3_step(pStmt)==SQLITE_ROW ){
75874 if( xCallback && (SQLITE_ROW==rc ||
75890 if( rc==SQLITE_ROW ){
75909 if( rc!=SQLITE_ROW ){
85520 assert( rc!=SQLITE_ROW );
85535 while( SQLITE_ROW==sqlite3_step(pStmt) ){
99511 if( SQLITE_ROW==sqlite3_step(pCsr->pStmt) ){
99538 if( SQLITE_ROW!=sqlite3_step(pCsr->pStmt) ){
100266 while( rc==SQLITE_OK && SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){
101933 if( SQLITE_ROW==sqlite3_step(pStmt) ){
103484 if( SQLITE_ROW==sqlite3_step(pStmt) ){
104119 if( rc!=SQLITE_ROW ){
104479 if( SQLITE_ROW==sqlite3_step(pSelect) ){
104527 if( SQLITE_ROW==sqlite3_step(pNextIdx) ){
104588 if( rc!=SQLITE_ROW ){
105357 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105521 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105542 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105561 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105946 for(i=0; SQLITE_ROW==(sqlite3_step(pStmt)); i++){
107925 if( rc==SQLITE_ROW ){
108478 if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){
109542 if( sqlite3_step(pRtree->pReadParent)==SQLITE_ROW ){
109979 if( SQLITE_ROW==sqlite3_step(pRtree->pReadRowid) ){
110144 if( SQLITE_ROW==sqlite3_step(pStmt) ){