Lines Matching refs:zSchema

7002 SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema);
7152 **   const char *zSchema,
7664 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,
10873 const char *zSchema,
10922 const char *zSchema,
11039 const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */
11105 const char *zSchema, /* Which DB to reopen with the deserialization */
53599 static MemFile *memdbFromDbSchema(sqlite3 *db, const char *zSchema){
53602 int rc = sqlite3_file_control(db, zSchema, SQLITE_FCNTL_FILE_POINTER, &p);
53617 const char *zSchema, /* Which database within the connection */
53638 if( zSchema==0 ) zSchema = db->aDb[0].zDbSName;
53639 p = memdbFromDbSchema(db, zSchema);
53640 iDb = sqlite3FindDbName(db, zSchema);
53658 zSql = sqlite3_mprintf("PRAGMA \"%w\".page_count", zSchema);
53702 /* Convert zSchema to a MemDB and initialize its content.
53706 const char *zSchema, /* Which DB to reopen with the deserialization */
53727 if( zSchema==0 ) zSchema = db->aDb[0].zDbSName;
53728 iDb = sqlite3FindDbName(db, zSchema);
53734 zSql = sqlite3_mprintf("ATTACH x AS %Q", zSchema);
53750 p = memdbFromDbSchema(db, zSchema);
100103 const char *zSchema;
100133 zSchema = LEGACY_SCHEMA_TABLE;
100141 db->aDb[iDb].zDbSName, zSchema, pOp->p4.z);
105612 const char *zSchema; /* tables_used.schema */
105710 pCur->zSchema = 0;
105739 pCur->zSchema = 0;
105787 pCur->zSchema = db->aDb[iDb].zDbSName;
105875 sqlite3_result_text(ctx, pCur->zSchema, -1, SQLITE_STATIC);
181076 ** transaction state over all attached databases if zSchema is null.
181078 SQLITE_API int sqlite3_txn_state(sqlite3 *db, const char *zSchema){
181088 if( zSchema ){
181089 nDb = iDb = sqlite3FindDbName(db, zSchema);
190161 const char *zSchema, /* Name of schema in which pVtab lives */
190176 p->bFts4 ? 4 : 3, zSchema, zTabname, sqlite3_errstr(rc));
190180 p->bFts4 ? 4 : 3, zSchema, zTabname);
214515 const char *zSchema, /* Schema in which the virtual table lives */
214523 UNUSED_PARAMETER(zSchema);
224687 const char *zSchema;
224689 zSchema = (const char*)sqlite3_value_text(argv[0]);
224690 pCsr->iDb = sqlite3FindDbName(db, zSchema);
224771 const char *zSchema;
224793 zSchema = (const char*)sqlite3_value_text(argv[4]);
224794 iDb = ALWAYS(zSchema) ? sqlite3FindDbName(pTab->db, zSchema) : -1;
252565 const char *zSchema, /* Name of schema in which this table lives */
252581 zSchema, zTabname);
252586 zSchema, zTabname, sqlite3_errstr(rc));