Searched refs:zSchema (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.h | 6689 SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema); 7351 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema, 10560 const char *zSchema, 10609 const char *zSchema, 10726 const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */ 10792 const char *zSchema, /* Which DB to reopen with the deserialization */
|
H A D | shell.c | 1994 const char *zSchema, /* Schema of the database holding the vtab */ in shellFakeSchema() argument 2005 zSchema ? zSchema : "main", zName); in shellFakeSchema() 2010 if( zSchema ){ in shellFakeSchema() 2011 cQuote = quoteChar(zSchema); in shellFakeSchema() 2012 if( cQuote && sqlite3_stricmp(zSchema,"temp")==0 ) cQuote = 0; in shellFakeSchema() 2013 appendText(&s, zSchema, cQuote); in shellFakeSchema() 2133 const char *zSchema = (const char*)sqlite3_value_text(apVal[1]); in shellAddSchemaName() local 2143 if( zSchema ){ in shellAddSchemaName() 2144 char cQuote = quoteChar(zSchema); in shellAddSchemaName() 2145 if( cQuote && sqlite3_stricmp(zSchema,"temp")!=0 ){ in shellAddSchemaName() [all …]
|
H A D | sqlite3.c | 7002 SQLITE_API int sqlite3_txn_state(sqlite3*,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; [all …]
|
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 2657 const char *zSchema = 0; in DbObjCmd() 2686 if( zSchema==0 && i==objc-2 && z[0]!='-' ){ in DbObjCmd() 2687 zSchema = z; in DbObjCmd() 2708 xrc = sqlite3_deserialize(pDb->db, zSchema, pData, len, len, flags); in DbObjCmd() 2714 sqlite3_file_control(pDb->db, zSchema,SQLITE_FCNTL_SIZE_LIMIT,&mxSize); in DbObjCmd() 3240 const char *zSchema = objc>=3 ? Tcl_GetString(objv[2]) : "main"; in DbObjCmd() 3248 pData = sqlite3_serialize(pDb->db, zSchema, &sz, SQLITE_SERIALIZE_NOCOPY); in DbObjCmd() 3252 pData = sqlite3_serialize(pDb->db, zSchema, &sz, 0); in DbObjCmd()
|