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

/external/sqlite/dist/orig/
H A Dshell.c2566 char *zDb = nArg>=2 ? azArg[1] : "main"; local
2570 sqlite3_file_control(p->db, zDb, SQLITE_FCNTL_FILE_POINTER, &pFile);
2598 if( zDb==0 ){
2600 }else if( strcmp(zDb,"temp")==0 ){
2603 zSchemaTab = sqlite3_mprintf("\"%w\".sqlite_master", zDb);
2678 const char *zDb = 0; local
2693 }else if( zDb==0 ){
2694 zDb = zDestFile;
2705 if( zDb==0 ) zDb
3477 const char *zDb; local
[all...]
H A Dsqlite3.h5859 ** in row iRow, column zColumn, table zTable in database zDb;
5863 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5866 ** ^(Parameter zDb is not the filename that contains the database, but
5884 ** <li> ^(Database zDb does not exist)^,
5885 ** <li> ^(Table zTable does not exist within database zDb)^,
5928 const char *zDb,
7487 SQLITE_API int SQLITE_STDCALL sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb);
7556 ** ^If parameter zDb is NULL or points to a zero length string, then the
7568 ** ^If database zDb is the name of an attached database that is not in WAL
7570 ** zDb i
[all...]
H A Dsqlite3.c6073 ** in row iRow, column zColumn, table zTable in database zDb;
6077 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
6080 ** ^(Parameter zDb is not the filename that contains the database, but
6098 ** <li> ^(Database zDb does not exist)^,
6099 ** <li> ^(Table zTable does not exist within database zDb)^,
6142 const char *zDb,
7701 SQLITE_API int SQLITE_STDCALL sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb);
7770 ** ^If parameter zDb is NULL or points to a zero length string, then the
7782 ** ^If database zDb is the name of an attached database that is not in WAL
7784 ** zDb i
13444 const char *zDb; /* Make sure all objects are contained in this database */ member in struct:DbFixer
32228 char zDb[MAX_PATHNAME+1]; /* Database file path */ local
64241 findBtree(sqlite3 *pErrorDb, sqlite3 *pDb, const char *zDb) argument
77127 const char *zDb; /* database name - used by the update hook */ local
79706 sqlite3_blob_open( sqlite3* db, const char *zDb, const char *zTable, const char *zColumn, sqlite_int64 iRow, int flags, sqlite3_blob **ppBlob ) argument
83664 lookupName( Parse *pParse, const char *zDb, const char *zTab, const char *zCol, NameContext *pNC, Expr *pExpr ) argument
84107 const char *zDb; local
89586 char *zDb; /* Name of database iDb */ local
89815 const char *zDb; /* Database name */ local
91373 char *z, *zDb; local
91807 loadStat4(sqlite3 *db, const char *zDb) argument
92379 const char *zDb; local
92612 char *zDb = db->aDb[iDb].zName; /* Name of attached database */ local
93166 const char *zDb; local
93189 sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb) argument
93666 char *zDb = db->aDb[iDb].zName; local
93697 char *zDb = db->aDb[iDb].zName; local
95308 const char *zDb = db->aDb[iDb].zName; local
95825 const char *zDb = pDb->zName; local
96261 const char *zDb = db->aDb[iDb].zName; local
96818 sqlite3CodeVerifyNamedSchema(Parse *pParse, const char *zDb) argument
97037 const char *zDb; /* Name of the database */ local
97901 const char *zDb; /* Name of database holding pTab */ local
101237 const char *zDb; /* Name of database containing pTab */ local
102243 const char *zDb; /* Name of the database holding this table */ local
106114 const char *zDb = 0; /* The database name */ local
108339 const char *zDb = db->aDb[i].zName; local
114676 const char *zDb = db->aDb[iTabDb].zName; local
114946 const char *zDb; local
115007 const char *zDb = db->aDb[iDb].zName; local
132699 sqlite3WalDefaultHook( void *pClientData, sqlite3 *db, const char *zDb, int nFrame ) argument
132773 sqlite3_wal_checkpoint_v2( sqlite3 *db, const char *zDb, int eMode, int *pnLog, int *pnCkpt ) argument
132828 sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb) argument
135742 const char *zDb; /* logical database name */ member in struct:Fts3Table
136408 const char *zDb = p->zDb; /* Name of database (e.g. "main", "temp") */ local
136887 fts3ContentColumns( sqlite3 *db, const char *zDb, const char *zTbl, const char ***pazCol, int *pnCol, int *pnStr, char **pzErr ) argument
141845 char const *zDb; /* Name of database (e.g. "main") */ local
154161 char *zDb; /* Name of database containing r-tree table */ member in struct:Rtree
157058 rtreeSqlInit( Rtree *pRtree, sqlite3 *db, const char *zDb, const char *zPrefix, int isCreate ) argument
166283 char *zDb; /* Database holding FTS index (e.g. "main") */ member in struct:Fts5Config
183925 const char *zDb = bDb ? argv[3] : argv[1]; local
[all...]
/external/sqlite/dist/
H A Dshell.c2588 char *zDb = nArg>=2 ? azArg[1] : "main"; local
2592 sqlite3_file_control(p->db, zDb, SQLITE_FCNTL_FILE_POINTER, &pFile);
2620 if( zDb==0 ){
2622 }else if( strcmp(zDb,"temp")==0 ){
2625 zSchemaTab = sqlite3_mprintf("\"%w\".sqlite_master", zDb);
2700 const char *zDb = 0; local
2715 }else if( zDb==0 ){
2716 zDb = zDestFile;
2727 if( zDb==0 ) zDb
3499 const char *zDb; local
[all...]
H A Dsqlite3.h5859 ** in row iRow, column zColumn, table zTable in database zDb;
5863 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
5866 ** ^(Parameter zDb is not the filename that contains the database, but
5884 ** <li> ^(Database zDb does not exist)^,
5885 ** <li> ^(Table zTable does not exist within database zDb)^,
5928 const char *zDb,
7487 SQLITE_API int SQLITE_STDCALL sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb);
7556 ** ^If parameter zDb is NULL or points to a zero length string, then the
7568 ** ^If database zDb is the name of an attached database that is not in WAL
7570 ** zDb i
[all...]
H A Dsqlite3.c6073 ** in row iRow, column zColumn, table zTable in database zDb;
6077 ** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
6080 ** ^(Parameter zDb is not the filename that contains the database, but
6098 ** <li> ^(Database zDb does not exist)^,
6099 ** <li> ^(Table zTable does not exist within database zDb)^,
6142 const char *zDb,
7701 SQLITE_API int SQLITE_STDCALL sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb);
7770 ** ^If parameter zDb is NULL or points to a zero length string, then the
7782 ** ^If database zDb is the name of an attached database that is not in WAL
7784 ** zDb i
13444 const char *zDb; /* Make sure all objects are contained in this database */ member in struct:DbFixer
32246 char zDb[MAX_PATHNAME+1]; /* Database file path */ local
64259 findBtree(sqlite3 *pErrorDb, sqlite3 *pDb, const char *zDb) argument
77145 const char *zDb; /* database name - used by the update hook */ local
79724 sqlite3_blob_open( sqlite3* db, const char *zDb, const char *zTable, const char *zColumn, sqlite_int64 iRow, int flags, sqlite3_blob **ppBlob ) argument
83682 lookupName( Parse *pParse, const char *zDb, const char *zTab, const char *zCol, NameContext *pNC, Expr *pExpr ) argument
84125 const char *zDb; local
89604 char *zDb; /* Name of database iDb */ local
89833 const char *zDb; /* Database name */ local
91391 char *z, *zDb; local
91825 loadStat4(sqlite3 *db, const char *zDb) argument
92397 const char *zDb; local
92630 char *zDb = db->aDb[iDb].zName; /* Name of attached database */ local
93184 const char *zDb; local
93207 sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb) argument
93684 char *zDb = db->aDb[iDb].zName; local
93715 char *zDb = db->aDb[iDb].zName; local
95326 const char *zDb = db->aDb[iDb].zName; local
95843 const char *zDb = pDb->zName; local
96279 const char *zDb = db->aDb[iDb].zName; local
96836 sqlite3CodeVerifyNamedSchema(Parse *pParse, const char *zDb) argument
97055 const char *zDb; /* Name of the database */ local
97919 const char *zDb; /* Name of database holding pTab */ local
101255 const char *zDb; /* Name of database containing pTab */ local
102261 const char *zDb; /* Name of the database holding this table */ local
106132 const char *zDb = 0; /* The database name */ local
108357 const char *zDb = db->aDb[i].zName; local
114694 const char *zDb = db->aDb[iTabDb].zName; local
114964 const char *zDb; local
115025 const char *zDb = db->aDb[iDb].zName; local
132717 sqlite3WalDefaultHook( void *pClientData, sqlite3 *db, const char *zDb, int nFrame ) argument
132791 sqlite3_wal_checkpoint_v2( sqlite3 *db, const char *zDb, int eMode, int *pnLog, int *pnCkpt ) argument
132846 sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb) argument
135760 const char *zDb; /* logical database name */ member in struct:Fts3Table
136426 const char *zDb = p->zDb; /* Name of database (e.g. "main", "temp") */ local
136905 fts3ContentColumns( sqlite3 *db, const char *zDb, const char *zTbl, const char ***pazCol, int *pnCol, int *pnStr, char **pzErr ) argument
141875 char const *zDb; /* Name of database (e.g. "main") */ local
154191 char *zDb; /* Name of database containing r-tree table */ member in struct:Rtree
157088 rtreeSqlInit( Rtree *pRtree, sqlite3 *db, const char *zDb, const char *zPrefix, int isCreate ) argument
166313 char *zDb; /* Database holding FTS index (e.g. "main") */ member in struct:Fts5Config
183955 const char *zDb = bDb ? argv[3] : argv[1]; local
[all...]

Completed in 504 milliseconds