Home
last modified time | relevance | path

Searched refs:zSchema (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.h6317 SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema);
9814 const char *zSchema,
9863 const char *zSchema,
9973 const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */
10029 const char *zSchema, /* Which DB to reopen with the deserialization */
H A Dshell.c934 zSchema ? zSchema : "main", zName); in shellFakeSchema()
938 if( zSchema ){ in shellFakeSchema()
939 cQuote = quoteChar(zSchema); in shellFakeSchema()
941 appendText(&s, zSchema, cQuote); in shellFakeSchema()
1028 if( zSchema ){ in shellAddSchemaName()
1029 char cQuote = quoteChar(zSchema); in shellAddSchemaName()
11974 const char *zSchema = "main"; in dbdataFilter() local
11986 rc = dbdataDbsize(pCsr, zSchema); in dbdataFilter()
18907 azName[nName*2] = strdup(zSchema); in do_meta_command()
19191 const char *zSchema = 0; in do_meta_command() local
[all …]
H A Dsqlite3.c10120 const char *zSchema,
10169 const char *zSchema,
49255 if( zSchema==0 ) zSchema = db->aDb[0].zDbSName;
49336 if( zSchema==0 ) zSchema = db->aDb[0].zDbSName;
93203 const char *zSchema;
98596 pCur->zSchema = 0;
98625 pCur->zSchema = 0;
167854 if( zSchema ){
208266 const char *zSchema;
208344 const char *zSchema;
[all …]
/freebsd-13.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2637 const char *zSchema = 0; in DbObjCmd()
2666 if( zSchema==0 && i==objc-2 && z[0]!='-' ){ in DbObjCmd()
2667 zSchema = z; in DbObjCmd()
2688 xrc = sqlite3_deserialize(pDb->db, zSchema, pData, len, len, flags); in DbObjCmd()
2694 sqlite3_file_control(pDb->db, zSchema,SQLITE_FCNTL_SIZE_LIMIT,&mxSize); in DbObjCmd()
3206 const char *zSchema = objc>=3 ? Tcl_GetString(objv[2]) : "main"; in DbObjCmd()
3214 pData = sqlite3_serialize(pDb->db, zSchema, &sz, SQLITE_SERIALIZE_NOCOPY); in DbObjCmd()
3218 pData = sqlite3_serialize(pDb->db, zSchema, &sz, 0); in DbObjCmd()