Searched defs:aCol (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A Dselect.c143 if( sqliteStrICmp(pTab->aCol[i].zName, zCol)==0 ) return i;
232 if( columnIndex(pOther->pTab, pTab->aCol[j].zName)>=0 ){
233 addWhereTerm(pTab->aCol[j].zName, pTab, pOther->pTab, &p->pWhere);
682 zType = pTab->aCol[iCol].zType;
737 zCol = pTab->aCol[iCol].zName;
792 Column *aCol; local
805 pTab->aCol = aCol = sqliteMalloc( sizeof(pTab->aCol[0])*pTab->nCol );
809 aCol[
[all...]
H A DsqliteInt.h477 ** Table.nCol is the number of columns in this table. Table.aCol is a
502 Column *aCol; /* Information about each column */ member in struct:Table
503 int iPKey; /* If not less then 0, use aCol[iPKey] as the primary key */
550 } *aCol; /* One entry for each of nCol column s */ member in struct:FKey
611 ** first column to be indexed (c3) has an index of 2 in Ex1.aCol[].
613 ** Ex1.aCol[], hence Ex2.aiColumn[1]==0.
756 int idx; /* Index in some Table.aCol[] of a column named zName */

Completed in 35 milliseconds