Home
last modified time | relevance | path

Searched refs:nColumn (Results 1 – 2 of 2) sorted by relevance

/src/contrib/sqlite3/
H A Dshell.c24383 int nColumn = 0; in exec_prepared_stmt_columnar() local
24404 nColumn = sqlite3_column_count(pStmt); in exec_prepared_stmt_columnar()
24405 if( nColumn==0 ) goto columnar_end; in exec_prepared_stmt_columnar()
24406 nAlloc = nColumn*4; in exec_prepared_stmt_columnar()
24410 azNextLine = sqlite3_malloc64( nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
24412 memset((void*)azNextLine, 0, nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
24414 azQuoted = sqlite3_malloc64( nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
24416 memset(azQuoted, 0, nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
24418 abRowDiv = sqlite3_malloc64( nAlloc/nColumn ); in exec_prepared_stmt_columnar()
24420 if( nColumn>p->nWidth ){ in exec_prepared_stmt_columnar()
[all …]
H A Dsqlite3.c19160 u16 nColumn; /* Nr columns in btree. Can be 2*Table.nCol */ member
19270 int nColumn; /* Number of used entries in aCol[] */ member
19301 (assert((A)->iFirstReg),(A)->iFirstReg+(A)->nColumn+(I))
19305 ((A)->iFirstReg+(A)->nColumn+(I))
85281 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
91394 nRealCol = sqlite3PrimaryKeyIndex(pTab)->nColumn;
113587 if( pIdx->nColumn<nExpr ) continue;
113591 testcase( pIdx->nColumn==BMS-2 );
113592 testcase( pIdx->nColumn==BMS-1 );
113593 if( pIdx->nColumn>=BMS-1 ) continue;
[all …]