Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/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 …]
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c18348 i16 nCol; /* Number of columns in this table */ member
18492 int nCol; /* Number of columns in this key */ member
32374 int nCol, in sqlite3TreeViewColumnList() argument
32380 for(i=0; i<nCol; i++){ in sqlite3TreeViewColumnList()
32382 int colMoreToFollow = i<(nCol - 1); in sqlite3TreeViewColumnList()
32477 pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab, pItem->colUsed); in sqlite3TreeViewSrcList()
32519 sqlite3TreeViewColumnList(pView, pTab->aCol, pTab->nCol, 1); in sqlite3TreeViewSrcList()
83777 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
83779 nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord));
83784 assert( pRec->pKeyInfo->nAllField==nCol );
[all …]
H A Dshell.c3409 int nCol; /* Number of columns in the result set */ in sha3QueryFunc() local
3446 nCol = sqlite3_column_count(pStmt); in sha3QueryFunc()
3457 for(i=0; i<nCol; i++){ in sha3QueryFunc()
4646 int nCol = 0; in toBase64() local
4656 if( (nCol += 4)>=B64_DARK_MAX || nbIn<=0 ){ in toBase64()
4658 nCol = 0; in toBase64()
5000 int nCol = 0; in toBase85() local
5014 if( pSep && (nCol += 5)>=B85_DARK_MAX ){ in toBase85()
5016 nCol = 0; in toBase85()
5026 nCol += nco; in toBase85()
[all …]