Home | History | Annotate | Download | only in dist

Lines Matching defs:nCol

1566           int nCol = sqlite3_column_count(pStmt);
1567 void *pData = sqlite3_malloc64(3*nCol*sizeof(const char*) + 1);
1572 char **azVals = &azCols[nCol]; /* Results */
1573 int *aiTypes = (int *)&azVals[nCol]; /* Result types */
1577 for(i=0; i<nCol; i++){
1582 for(i=0; i<nCol; i++){
1598 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){
2993 int nCol; /* Number of columns in the table */
3109 nCol = sqlite3_column_count(pStmt);
3112 if( nCol==0 ) return 0; /* no columns, no error */
3113 zSql = sqlite3_malloc64( nByte*2 + 20 + nCol*2 );
3121 for(i=1; i<nCol; i++){
3139 for(i=0; i<nCol; i++){
3153 if( i<nCol-1 && sCtx.cTerm!=sCtx.cColSep ){
3156 sCtx.zFile, startLine, nCol, i+1);
3158 while( i<=nCol ){ sqlite3_bind_null(pStmt, i); i++; }
3168 sCtx.zFile, startLine, nCol, i);
3170 if( i>=nCol ){