HomeSort by relevance Sort by last modified time
    Searched refs:zWhere (Results 1 - 4 of 4) 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...]
analyze.c 27 ** Argument zWhere may be a pointer to a buffer containing a table name,
30 ** with the named table are deleted. If zWhere==0, then code is generated
37 const char *zWhere, /* Delete entries for this table or index */
76 /* The table already exists. If zWhere is not NULL, delete all entries
77 ** associated with the table zWhere. If zWhere is NULL, delete the
81 if( zWhere ){
83 "DELETE FROM %Q.%s WHERE %s=%Q", pDb->zName, zTab, zWhereType, zWhere
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...]

Completed in 146 milliseconds