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.c1575 int nCol; /* Number of columns returned by pStmt */ member
1590 for(i=0; i<p->nCol; i++){ in dbReleaseColumnNames()
1596 p->nCol = 0; in dbReleaseColumnNames()
1644 int nCol; /* Number of columns returned by pStmt */ in dbEvalRowInfo() local
1647 p->nCol = nCol = sqlite3_column_count(pStmt); in dbEvalRowInfo()
1648 if( nCol>0 && (papColName || p->pArray) ){ in dbEvalRowInfo()
1649 apColName = (Tcl_Obj**)Tcl_Alloc( sizeof(Tcl_Obj*)*nCol ); in dbEvalRowInfo()
1650 for(i=0; i<nCol; i++){ in dbEvalRowInfo()
1665 for(i=0; i<nCol; i++){ in dbEvalRowInfo()
1678 *pnCol = p->nCol; in dbEvalRowInfo()
[all …]
/freebsd/contrib/sqlite3/
H A Dsqlite3.c18402 i16 nCol; /* Number of columns in this table */ member
18554 int nCol; /* Number of columns in this key */ member
32679 int nCol, in sqlite3TreeViewColumnList() argument
32685 for(i=0; i<nCol; i++){ in sqlite3TreeViewColumnList()
32687 int colMoreToFollow = i<(nCol - 1); in sqlite3TreeViewColumnList()
32782 pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab, in sqlite3TreeViewSrcList()
32827 sqlite3TreeViewColumnList(pView, pTab->aCol, pTab->nCol, 1); in sqlite3TreeViewSrcList()
84224 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
84226 nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord));
84231 assert( pRec->pKeyInfo->nAllField==nCol );
[all …]
H A Dshell.c3423 int nCol; /* Number of columns in the result set */ in sha3QueryFunc() local
3460 nCol = sqlite3_column_count(pStmt); in sha3QueryFunc()
3471 for(i=0; i<nCol; i++){ in sha3QueryFunc()
4660 int nCol = 0; in toBase64() local
4670 if( (nCol += 4)>=B64_DARK_MAX || nbIn<=0 ){ in toBase64()
4672 nCol = 0; in toBase64()
5014 int nCol = 0; in toBase85() local
5028 if( pSep && (nCol += 5)>=B85_DARK_MAX ){ in toBase85()
5030 nCol = 0; in toBase85()
5040 nCol += nco; in toBase85()
[all …]