HomeSort by relevance Sort by last modified time
    Searched defs:zCol (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
auth.c 93 ** Invoke the authorization callback for permission to read column zCol from
104 const char *zCol, /* Column name */
111 rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext);
114 sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited",zDb,zTab,zCol);
116 sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited", zTab, zCol);
142 const char *zCol; /* Name of the column of the table */
172 zCol = pTab->aCol[iCol].zName;
175 zCol = pTab->aCol[pTab->iPKey].zName;
177 zCol = "ROWID";
180 if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) )
    [all...]
alter.c 629 char *zCol; /* Null-terminated column definition */
703 zCol = sqlite3DbStrNDup(db, (char*)pColDef->z, pColDef->n);
704 if( zCol ){
705 char *zEnd = &zCol[pColDef->n-1];
707 while( zEnd>zCol && (*zEnd==';' || sqlite3Isspace(*zEnd)) ){
715 zDb, SCHEMA_TABLE(iDb), pNew->addColOffset, zCol, pNew->addColOffset+1,
718 sqlite3DbFree(db, zCol);
fkey.c 191 char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */
264 if( sqlite3StrICmp(pFKey->aCol[j].zCol, zIdxCol)==0 ){
494 const char *zCol; /* Name of column in child table */
515 zCol = pFKey->pFrom->aCol[iCol].zName;
516 pRight = sqlite3Expr(db, TK_ID, zCol);
746 char *zCol = pTo->aCol[pIdx ? pIdx->aiColumn[i] : pTo->iPKey].zName;
747 rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb);
    [all...]
resolve.c 132 const char *zCol, /* Name of the column. */
147 assert( zCol ); /* The Z in X.Y.Z cannot be NULL */
191 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
212 if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
248 if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
255 if( iCol>=pTab->nCol && sqlite3IsRowid(zCol) ){
282 if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){
303 if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){
354 sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol);
356 sqlite3ErrorMsg(pParse, "%s: %s.%s", zErr, zTab, zCol);
    [all...]
insert.c     [all...]
pragma.c     [all...]
test8.c 835 char *zCol = pVtab->aCol[iCol];
839 zCol = "rowid";
857 zSep, zCol);
859 zNew = sqlite3_mprintf(" %s %s %s ?", zSep, zCol, zOp);
875 char *zCol = pVtab->aCol[iCol];
878 zCol = "rowid";
880 zNew = sqlite3_mprintf(" ORDER BY %s %s", zCol, zDir);
    [all...]
select.c 184 static int columnIndex(Table *pTab, const char *zCol){
187 if( sqlite3StrICmp(pTab->aCol[i].zName, zCol)==0 ) return i;
194 ** table that has a column named zCol.
204 const char *zCol, /* Name of the column we are looking for */
209 int iCol; /* Index of column matching zCol */
213 iCol = columnIndex(pSrc->a[i].pTab, zCol);
    [all...]
test1.c     [all...]
sqliteInt.h     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 770 milliseconds