Lines Matching refs:zDbName

944 ** interrogated.  The zDbName parameter is ignored.
4741 const char *zDbName, /* Name of the database */
4759 const char *zDbName, /* Name of the database */
4945 SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName);
4954 SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName);
5262 const char *zDbName, /* Database name or NULL */
6221 ** ^If the second parameter (zDbName) does not match the name of any
6226 ** an incorrect zDbName and an SQLITE_ERROR return from the underlying
6231 SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*);
88401 const char *zDbName = pParse->db->aDb[iDb].zName;
88405 if( sqlite3FindTable(pParse->db, zTab, zDbName) ){
88408 zDbName, zTab, zType, zName
125064 const char *zDbName, /* Database name or NULL */
125094 pTab = sqlite3FindTable(db, zTableName, zDbName);
125199 SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){
125204 pBtree = sqlite3DbNameToBtree(db, zDbName);
125592 ** Return the Btree pointer identified by zDbName. Return NULL if not found.
125594 SQLITE_PRIVATE Btree *sqlite3DbNameToBtree(sqlite3 *db, const char *zDbName){
125598 && (zDbName==0 || sqlite3StrICmp(zDbName, db->aDb[i].zName)==0)
125610 SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName){
125611 Btree *pBt = sqlite3DbNameToBtree(db, zDbName);
125619 SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName){
125620 Btree *pBt = sqlite3DbNameToBtree(db, zDbName);