Lines Matching refs:zSchema
7213 SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema);
7363 ** const char *zSchema,
7877 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,
11111 const char *zSchema,
11160 const char *zSchema,
11278 const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */
11344 const char *zSchema, /* Which DB to reopen with the deserialization */
54547 static MemFile *memdbFromDbSchema(sqlite3 *db, const char *zSchema){
54550 int rc = sqlite3_file_control(db, zSchema, SQLITE_FCNTL_FILE_POINTER, &p);
54565 const char *zSchema, /* Which database within the connection */
54586 if( zSchema==0 ) zSchema = db->aDb[0].zDbSName;
54587 p = memdbFromDbSchema(db, zSchema);
54588 iDb = sqlite3FindDbName(db, zSchema);
54606 zSql = sqlite3_mprintf("PRAGMA \"%w\".page_count", zSchema);
54650 /* Convert zSchema to a MemDB and initialize its content.
54654 const char *zSchema, /* Which DB to reopen with the deserialization */
54675 if( zSchema==0 ) zSchema = db->aDb[0].zDbSName;
54676 iDb = sqlite3FindDbName(db, zSchema);
54682 zSql = sqlite3_mprintf("ATTACH x AS %Q", zSchema);
54698 p = memdbFromDbSchema(db, zSchema);
101366 const char *zSchema;
101396 zSchema = LEGACY_SCHEMA_TABLE;
101404 db->aDb[iDb].zDbSName, zSchema, pOp->p4.z);
106919 const char *zSchema; /* tables_used.schema */
107017 pCur->zSchema = 0;
107046 pCur->zSchema = 0;
107094 pCur->zSchema = db->aDb[iDb].zDbSName;
107182 sqlite3_result_text(ctx, pCur->zSchema, -1, SQLITE_STATIC);
183906 ** transaction state over all attached databases if zSchema is null.
183908 SQLITE_API int sqlite3_txn_state(sqlite3 *db, const char *zSchema){
183918 if( zSchema ){
183919 nDb = iDb = sqlite3FindDbName(db, zSchema);
193050 const char *zSchema, /* Name of schema in which pVtab lives */
193065 p->bFts4 ? 4 : 3, zSchema, zTabname, sqlite3_errstr(rc));
193069 p->bFts4 ? 4 : 3, zSchema, zTabname);
217630 const char *zSchema, /* Schema in which the virtual table lives */
217638 UNUSED_PARAMETER(zSchema);
227838 const char *zSchema;
227840 zSchema = (const char*)sqlite3_value_text(argv[0]);
227841 pCsr->iDb = sqlite3FindDbName(db, zSchema);
227969 const char *zSchema = (const char*)sqlite3_value_text(argv[4]);
227970 iDb = sqlite3FindDbName(pTab->db, zSchema);
257369 const char *zSchema, /* Name of schema in which this table lives */
257385 zSchema, zTabname);
257390 zSchema, zTabname, sqlite3_errstr(rc));