Home | History | Annotate | Download | only in orig

Lines Matching full:nrow

1366           "         nLoop=%-8lld nRow=%-8lld estRow=%-8lld estRow/Loop=%-8g\n",
1691 int nRow = 0;
1723 nRow++;
1726 if( rc!=SQLITE_OK || nRow==0 ){
3727 int nRow, nAlloc;
3772 nRow = nAlloc = 0;
3780 if( nRow>=nAlloc ){
3791 azResult[nRow] = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0));
3792 if( 0==azResult[nRow] ){
3796 nRow++;
3803 if( rc==0 && nRow>0 ){
3807 for(i=0; i<nRow; i++){
3813 nPrintRow = (nRow + nPrintCol - 1)/nPrintCol;
3815 for(j=i; j<nRow; j+=nPrintRow){
3823 for(ii=0; ii<nRow; ii++) sqlite3_free(azResult[ii]);