Searched defs:nErr (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dtokenize.c402 int nErr = 0; local
441 nErr++;
459 if( zSql[i]==0 && nErr==0 && pParse->rc==SQLITE_OK ){
478 if( !nErr ) nErr++;
480 if( pParse->pVdbe && pParse->nErr>0 ){
492 if( nErr>0 && (pParse->rc==SQLITE_OK || pParse->rc==SQLITE_DONE) ){
495 return nErr;
H A Dexpr.c827 int nErr = 0; local
856 nErr++;
860 nErr++;
864 nErr++;
870 for(i=0; nErr==0 && i<n; i++){
871 nErr = sqliteExprCheck(pParse, pExpr->pList->a[i].pExpr,
899 nErr = sqliteExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg);
901 if( nErr==0 && pExpr->pRight ){
902 nErr = sqliteExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg);
904 if( nErr
1556 int nErr = 0; local
[all...]
H A Dmain.c61 int nErr = 0; local
122 nErr = 1;
123 assert( nErr==0 );
126 return nErr;
H A Dbuild.c48 pParse->nErr++;
78 if( v && pParse->nErr==0 ){
82 pParse->rc = pParse->nErr ? SQLITE_ERROR : SQLITE_DONE;
482 pParse->nErr++;
890 if( (pEnd==0 && pSelect==0) || pParse->nErr || sqlite_malloc_failed ) return;
972 if( pParse->explain==0 && pParse->nErr==0 ){
1010 if( p==0 || pParse->nErr ){
1060 int nErr = 0; local
1112 nErr++;
1117 return nErr;
[all...]
H A Dselect.c128 pParse->nErr++;
1097 int nErr = 0; local
1123 nErr++;
1154 nErr++;
1158 return nErr;
2035 if( sqlite_malloc_failed || pParse->nErr || p==0 ) return 1;
2061 if( pParse->nErr>0 ) goto select_end;
H A DsqliteInt.h927 int nErr; /* Number of errors seen */ member in struct:Parse

Completed in 90 milliseconds