Home
last modified time | relevance | path

Searched refs:nCol (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1637 int nCol; /* Number of columns returned by pStmt */ member
1653 for(i=0; i<p->nCol; i++){ in dbReleaseColumnNames()
1659 p->nCol = 0; in dbReleaseColumnNames()
1707 int nCol; /* Number of columns returned by pStmt */ in dbEvalRowInfo() local
1710 p->nCol = nCol = sqlite3_column_count(pStmt); in dbEvalRowInfo()
1711 if( nCol>0 && (papColName || p->pVarName) ){ in dbEvalRowInfo()
1712 apColName = (Tcl_Obj**)Tcl_Alloc( sizeof(Tcl_Obj*)*nCol ); in dbEvalRowInfo()
1713 for(i=0; i<nCol; i++){ in dbEvalRowInfo()
1730 for(i=0; i<nCol; i++){ in dbEvalRowInfo()
1756 *pnCol = p->nCol; in dbEvalRowInfo()
[all …]
/freebsd/contrib/sqlite3/
H A Dshell.c935 int nCol; /* Number of output columns */ member
2361 int nCol; /* Number of columns in the table */ member
2431 p->nAlloc = 2*p->nAlloc + 10*p->nCol; in qrfColDataEnlarge()
2461 if( p->nCol>0 ){ in qrfRowSeparator()
2467 for(i=1; i<p->nCol; i++){ in qrfRowSeparator()
2544 if( p->nCol>0 ){ in qrfBoxSeparator()
2550 for(i=1; i<p->nCol; i++){ in qrfBoxSeparator()
2566 for(i=0; i<pData->nCol; i++){ in qrfLoadAlignment()
2596 int nCol, /* Attempt this many columns */ in qrfValidLayout() argument
2605 aw = sqlite3_malloc64( sizeof(int)*nCol ); in qrfValidLayout()
[all …]
H A Dsqlite3.c19431 i16 nCol; /* Number of columns in this table */ member
19585 int nCol; /* Number of columns in this key */ member
34084 int nCol, in sqlite3TreeViewColumnList() argument
34090 for(i=0; i<nCol; i++){ in sqlite3TreeViewColumnList()
34092 int colMoreToFollow = i<(nCol - 1); in sqlite3TreeViewColumnList()
34187 pItem->pSTab->zName, pItem->pSTab->nCol, pItem->pSTab, in sqlite3TreeViewSrcList()
34242 sqlite3TreeViewColumnList(pView, pTab->aCol, pTab->nCol, 1); in sqlite3TreeViewSrcList()
87103 int nCol = pIdx->nColumn; /* Number of index columns including rowid */ local
87105 nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord));
87110 assert( pRec->pKeyInfo->nAllField==nCol );
[all …]