Searched refs:zCol (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A Dauth.c114 const char *zCol; /* Name of the column of the table */ local
138 zCol = pTab->aCol[pExpr->iColumn].zName;
141 zCol = pTab->aCol[pTab->iPKey].zName;
143 zCol = "ROWID";
147 rc = db->xAuth(db->pAuthArg, SQLITE_READ, pTab->zName, zCol, zDBase,
154 zDBase, pTab->zName, zCol);
156 sqliteErrorMsg(pParse, "access to %s.%s is prohibited", pTab->zName,zCol);
H A Dexpr.c423 char *zCol = 0; /* Name of the column. The "Z" */ local
443 zCol = sqliteStrNDup(pColumnToken->z, pColumnToken->n);
444 sqliteDequote(zCol);
475 if( sqliteStrICmp(pCol->zName, zCol)==0 ){
510 if( sqliteStrICmp(pCol->zName, zCol)==0 ){
523 if( cnt==0 && cntTab==1 && sqliteIsRowid(zCol) ){
544 if( zAs!=0 && sqliteStrICmp(zAs, zCol)==0 ){
549 sqliteFree(zCol);
564 sqliteFree(zCol);
577 sqliteSetString(&z, zDb, ".", zTab, ".", zCol,
[all...]
H A Dselect.c140 static int columnIndex(Table *pTab, const char *zCol){ argument
143 if( sqliteStrICmp(pTab->aCol[i].zName, zCol)==0 ) return i;
150 ** zCol column to be equal in the two tables pTab1 and pTab2.
153 const char *zCol, /* Name of the column */
163 dummy.z = zCol;
164 dummy.n = strlen(zCol);
727 char *zCol; local
735 zCol = "_ROWID_";
737 zCol = pTab->aCol[iCol].zName;
748 sqliteSetString(&zName, zTab, ".", zCol,
152 addWhereTerm( const char *zCol, const Table *pTab1, const Table *pTab2, Expr **ppExpr ) argument
[all...]
H A Dinsert.c811 char *zCol = pTab->aCol[pIdx->aiColumn[j]].zName; local
812 n2 = strlen(zCol);
822 strcpy(&zErrMsg[n1], zCol);
H A Dpragma.c477 sqliteVdbeOp3(v, OP_String, 0, 0, pFK->aCol[j].zCol, 0);
H A DsqliteInt.h549 char *zCol; /* Name of column in zTo. If 0 use PRIMARY KEY */ member in struct:FKey::sColMap

Completed in 38 milliseconds