Home
last modified time | relevance | path

Searched refs:nResult (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Ddbdump.c553 int nResult; in output_sql_from_query() local
575 nResult = sqlite3_column_count(pSelect); in output_sql_from_query()
579 for(i=1; i<nResult; i++){ in output_sql_from_query()
/sqlite-3.40.0/test/
H A Dspeedtest1.c109 int nResult; /* Size of the current result */ member
405 g.nResult = 0; in speedtest1_begin_test()
566 g.nResult = 0; in speedtest1_run()
611 if( g.nResult+len<sizeof(g.zResult)-2 ){ in speedtest1_run()
612 if( g.nResult>0 ) g.zResult[g.nResult++] = ' '; in speedtest1_run()
613 memcpy(g.zResult + g.nResult, z, len+1); in speedtest1_run()
614 g.nResult += len; in speedtest1_run()
/sqlite-3.40.0/src/
H A Dresolve.c1632 int nResult; /* Number of terms in the result set */ in resolveOrderGroupBy() local
1635 nResult = pSelect->pEList->nExpr; in resolveOrderGroupBy()
1657 resolveOutOfRangeError(pParse, zType, i+1, nResult, pE2); in resolveOrderGroupBy()
H A Dexpr.c3887 int nResult = sqlite3ExprVectorSize(p); in exprCodeVector() local
3888 if( nResult==1 ){ in exprCodeVector()
3901 pParse->nMem += nResult; in exprCodeVector()
3903 for(i=0; i<nResult; i++){ in exprCodeVector()
H A Dshell.c.in2696 int nResult; local
2709 nResult = sqlite3_column_count(pSelect);
2713 for(i=1; i<nResult; i++){