Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c20601 int nColumn = 0; in exec_prepared_stmt_columnar() local
20622 nColumn = sqlite3_column_count(pStmt); in exec_prepared_stmt_columnar()
20623 nAlloc = nColumn*4; in exec_prepared_stmt_columnar()
20627 azNextLine = sqlite3_malloc64( nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
20629 memset((void*)azNextLine, 0, nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
20631 azQuoted = sqlite3_malloc64( nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
20633 memset(azQuoted, 0, nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
20635 abRowDiv = sqlite3_malloc64( nAlloc/nColumn ); in exec_prepared_stmt_columnar()
20637 if( nColumn>p->nWidth ){ in exec_prepared_stmt_columnar()
20638 p->colWidth = realloc(p->colWidth, (nColumn+1)*2*sizeof(int)); in exec_prepared_stmt_columnar()
[all …]
H A Dsqlite3.c18686 u16 nColumn; /* Number of columns stored in the index */ member
18797 int nColumn; /* Number of used entries in aCol[] */ member
18827 (assert((A)->iFirstReg),(A)->iFirstReg+(A)->nColumn+(I))
83777 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
89815 nRealCol = sqlite3PrimaryKeyIndex(pTab)->nColumn;
111486 if( pIdx->nColumn<nExpr ) continue;
111490 testcase( pIdx->nColumn==BMS-2 );
111491 testcase( pIdx->nColumn==BMS-1 );
111492 if( pIdx->nColumn>=BMS-1 ) continue;
111495 ||(pIdx->nColumn>nExpr && !IsUniqueIndex(pIdx))
[all …]