• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/sqlite-3.6.22/

Lines Matching defs:SQLITE_ROW

908 #define SQLITE_ROW         100  /* sqlite3_step() has another row ready */
3342 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3358 ** ^If the SQL statement being executed returns any data, then [SQLITE_ROW]
3451 ** [sqlite3_step()] has returned [SQLITE_ROW] and neither
3455 ** something other than [SQLITE_ROW], the results are undefined.
3629 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
48374 rc = SQLITE_ROW;
50616 if( rc!=SQLITE_ROW && db->xProfile && !db->init.busy && p->zSql ){
50639 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
50642 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
50643 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
52234 ** SQLITE_ROW.
53208 ** with an SQLITE_ROW return code and it sets up the sqlite3_stmt
53266 /* Return SQLITE_ROW
53269 rc = SQLITE_ROW;
58256 if( rc!=SQLITE_ROW ){
58265 if( rc==SQLITE_ROW ){
65363 while( sqlite3_step(pStmt)==SQLITE_ROW ){
75617 if( xCallback && (SQLITE_ROW==rc ||
75633 if( rc==SQLITE_ROW ){
75652 if( rc!=SQLITE_ROW ){
85269 assert( rc!=SQLITE_ROW );
85284 while( SQLITE_ROW==sqlite3_step(pStmt) ){
99252 if( SQLITE_ROW==sqlite3_step(pCsr->pStmt) ){
99279 if( SQLITE_ROW!=sqlite3_step(pCsr->pStmt) ){
100007 while( rc==SQLITE_OK && SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){
101674 if( SQLITE_ROW==sqlite3_step(pStmt) ){
103225 if( SQLITE_ROW==sqlite3_step(pStmt) ){
103860 if( rc!=SQLITE_ROW ){
104220 if( SQLITE_ROW==sqlite3_step(pSelect) ){
104268 if( SQLITE_ROW==sqlite3_step(pNextIdx) ){
104329 if( rc!=SQLITE_ROW ){
105098 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105262 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105283 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105302 if( SQLITE_ROW==sqlite3_step(pStmt) ){
105687 for(i=0; SQLITE_ROW==(sqlite3_step(pStmt)); i++){
107666 if( rc==SQLITE_ROW ){
108219 if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){
109283 if( sqlite3_step(pRtree->pReadParent)==SQLITE_ROW ){
109720 if( SQLITE_ROW==sqlite3_step(pRtree->pReadRowid) ){
109885 if( SQLITE_ROW==sqlite3_step(pStmt) ){