Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c21864 int nColumn = 0; in exec_prepared_stmt_columnar() local
21885 nColumn = sqlite3_column_count(pStmt); in exec_prepared_stmt_columnar()
21886 if( nColumn==0 ) goto columnar_end; in exec_prepared_stmt_columnar()
21887 nAlloc = nColumn*4; in exec_prepared_stmt_columnar()
21891 azNextLine = sqlite3_malloc64( nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
21893 memset((void*)azNextLine, 0, nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
21895 azQuoted = sqlite3_malloc64( nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
21897 memset(azQuoted, 0, nColumn*sizeof(char*) ); in exec_prepared_stmt_columnar()
21899 abRowDiv = sqlite3_malloc64( nAlloc/nColumn ); in exec_prepared_stmt_columnar()
21901 if( nColumn>p->nWidth ){ in exec_prepared_stmt_columnar()
[all …]
H A Dsqlite3.c18748 u16 nColumn; /* Number of columns stored in the index */ member
18859 int nColumn; /* Number of used entries in aCol[] */ member
18889 (assert((A)->iFirstReg),(A)->iFirstReg+(A)->nColumn+(I))
84224 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
90319 nRealCol = sqlite3PrimaryKeyIndex(pTab)->nColumn;
112223 if( pIdx->nColumn<nExpr ) continue;
112227 testcase( pIdx->nColumn==BMS-2 );
112228 testcase( pIdx->nColumn==BMS-1 );
112229 if( pIdx->nColumn>=BMS-1 ) continue;
112232 ||(pIdx->nColumn>nExpr && !IsUniqueIndex(pIdx))
[all …]