Home | History | Annotate | Download | only in orig

Lines Matching defs:nCol

1560           int nCol = sqlite3_column_count(pStmt);
1561 void *pData = sqlite3_malloc64(3*nCol*sizeof(const char*) + 1);
1566 char **azVals = &azCols[nCol]; /* Results */
1567 int *aiTypes = (int *)&azVals[nCol]; /* Result types */
1571 for(i=0; i<nCol; i++){
1576 for(i=0; i<nCol; i++){
1592 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){
2971 int nCol; /* Number of columns in the table */
3087 nCol = sqlite3_column_count(pStmt);
3090 if( nCol==0 ) return 0; /* no columns, no error */
3091 zSql = sqlite3_malloc64( nByte*2 + 20 + nCol*2 );
3099 for(i=1; i<nCol; i++){
3117 for(i=0; i<nCol; i++){
3131 if( i<nCol-1 && sCtx.cTerm!=sCtx.cColSep ){
3134 sCtx.zFile, startLine, nCol, i+1);
3136 while( i<=nCol ){ sqlite3_bind_null(pStmt, i); i++; }
3146 sCtx.zFile, startLine, nCol, i);
3148 if( i>=nCol ){