Searched refs:zSchema (Results 1 – 4 of 4) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | sqlite3.h | 6894 SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema); 7558 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema, 10792 const char *zSchema, 10841 const char *zSchema, 10959 const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */ 11025 const char *zSchema, /* Which DB to reopen with the deserialization */
|
| H A D | shell.c | 1546 const char *zSchema, /* Schema of the database holding the vtab */ in shellFakeSchema() argument 1557 zSchema ? zSchema : "main", zName); in shellFakeSchema() 1562 if( zSchema ){ in shellFakeSchema() 1563 cQuote = quoteChar(zSchema); in shellFakeSchema() 1564 if( cQuote && sqlite3_stricmp(zSchema,"temp")==0 ) cQuote = 0; in shellFakeSchema() 1565 appendText(&s, zSchema, cQuote); in shellFakeSchema() 1661 const char *zSchema = (const char*)sqlite3_value_text(apVal[1]); in shellAddSchemaName() local 1671 if( zSchema ){ in shellAddSchemaName() 1672 char cQuote = quoteChar(zSchema); in shellAddSchemaName() 1673 if( cQuote && sqlite3_stricmp(zSchema,"temp")!=0 ){ in shellAddSchemaName() [all …]
|
| H A D | sqlite3.c | 7213 SQLITE_API int sqlite3_txn_state(sqlite3*,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 */ 54548 static MemFile *memdbFromDbSchema(sqlite3 *db, const char *zSchema){ 54551 int rc = sqlite3_file_control(db, zSchema, SQLITE_FCNTL_FILE_POINTER, &p); 54566 const char *zSchema, /* Which database within the connection */ 54587 if( zSchema==0 ) zSchema = db->aDb[0].zDbSName; [all …]
|
| /src/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 2711 const char *zSchema = 0; in DbObjCmd() 2741 if( zSchema==0 && i==objc-2 && z[0]!='-' ){ in DbObjCmd() 2742 zSchema = z; in DbObjCmd() 2763 xrc = sqlite3_deserialize(pDb->db, zSchema, pData, len, len, flags); in DbObjCmd() 2769 sqlite3_file_control(pDb->db, zSchema,SQLITE_FCNTL_SIZE_LIMIT,&mxSize); in DbObjCmd() 3295 const char *zSchema = objc>=3 ? Tcl_GetString(objv[2]) : "main"; in DbObjCmd() 3303 pData = sqlite3_serialize(pDb->db, zSchema, &sz, SQLITE_SERIALIZE_NOCOPY); in DbObjCmd() 3307 pData = sqlite3_serialize(pDb->db, zSchema, &sz, 0); in DbObjCmd()
|