Home
last modified time | relevance | path

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

/NextBSD/contrib/sqlite3/
HDshell.c1558 int nCol = sqlite3_column_count(pStmt); in shell_exec() local
1559 void *pData = sqlite3_malloc64(3*nCol*sizeof(const char*) + 1); in shell_exec()
1564 char **azVals = &azCols[nCol]; /* Results */ in shell_exec()
1565 int *aiTypes = (int *)&azVals[nCol]; /* Result types */ in shell_exec()
1569 for(i=0; i<nCol; i++){ in shell_exec()
1574 for(i=0; i<nCol; i++){ in shell_exec()
1590 if( xCallback(pArg, nCol, azVals, azCols, aiTypes) ){ in shell_exec()
2953 int nCol; /* Number of columns in the table */ in do_meta_command() local
3069 nCol = sqlite3_column_count(pStmt); in do_meta_command()
3072 if( nCol==0 ) return 0; /* no columns, no error */ in do_meta_command()
[all …]
HDsqlite3.c11589 i16 nCol; /* Number of columns in this table */ member
11681 int nCol; /* Number of columns in this key */ member
65295 int nCol = pIdx->nColumn; /* Number of index columns including rowid */
65297 nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord));
65302 assert( pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField==nCol );
65305 for(i=0; i<nCol; i++){
65836 int nCol = pRec->pKeyInfo->nField+pRec->pKeyInfo->nXField;
65839 for(i=0; i<nCol; i++){
78974 for(iCol=0; iCol<pTab->nCol; iCol++) {
78979 if( iCol==pTab->nCol ){
[all …]
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c9923 int nCol; /* Number of columns in this table */ member
10000 int nCol; /* Number of columns in this key */ member
70006 for(iCol=0; iCol<pTab->nCol; iCol++) {
70011 if( iCol==pTab->nCol ){
70035 for(j=0; j<pFKey->nCol; j++){
70104 sqlite3VdbeChangeP4(v, 3+flags, SQLITE_INT_TO_PTR(pTab->nCol+1),P4_INT32);
70105 sqlite3VdbeChangeP2(v, 7, pTab->nCol);
71969 assert( pTab->nCol>0 );
71990 for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){
72046 for(iCol=0; iCol<pTab->nCol; iCol++){
[all …]