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

  /external/chromium_org/third_party/sqlite/src/src/
alter.c 253 ** If argument zWhere is NULL, then a pointer string containing the text
259 ** If argument zWhere is not NULL, then the string returned is
260 ** "<where> OR name=<constant>", where <where> is the contents of zWhere.
261 ** In this case zWhere is passed to sqlite3DbFree() before returning.
264 static char *whereOrName(sqlite3 *db, char *zWhere, char *zConstant){
266 if( !zWhere ){
269 zNew = sqlite3MPrintf(db, "%s OR name=%Q", zWhere, zConstant);
270 sqlite3DbFree(db, zWhere);
284 char *zWhere = 0;
286 zWhere = whereOrName(pParse->db, zWhere, p->pFrom->zName)
    [all...]
vtab.c 339 char *zWhere;
373 zWhere = sqlite3MPrintf(db, "name='%q' AND type='table'", pTab->zName);
374 sqlite3VdbeAddOp4(v, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
where.c     [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 423 milliseconds