HomeSort by: relevance | last modified time | path
    Searched refs:zSchema (Results 1 - 4 of 4) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
sqlite3.h 7058 SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema);
7208 **   const char *zSchema,
7722 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,
11008 const char *zSchema,
11057 const char *zSchema,
11175 const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */
11242 const char *zSchema, /* Which DB to reopen with the deserialization */
shell.c 20436 ** Return true if nul-terminated string zSchema ends in "()". Or false
20439 static int dbdataIsFunction(const char *zSchema){
20440 size_t n = strlen(zSchema);
20441 if( n>2 && zSchema[n-2]=='(' && zSchema[n-1]==')' ){
20448 ** Determine the size in pages of database zSchema (where zSchema is
20453 static int dbdataDbsize(DbdataCursor *pCsr, const char *zSchema){
20460 if( (nFunc = dbdataIsFunction(zSchema))>0 ){
20461 zSql = sqlite3_mprintf("SELECT %.*s(0)", nFunc, zSchema);
    [all...]
sqlite3.c 7379 SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema);
7529 **   const char *zSchema,
8043 int (*xIntegrity)(sqlite3_vtab *pVTab, const char *zSchema,
11329 const char *zSchema,
11378 const char *zSchema,
11496 const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */
11563 const char *zSchema, /* Which DB to reopen with the deserialization */
    [all...]
  /src/external/public-domain/sqlite/dist/tea/generic/
tclsqlite3.c 3144 const char *zSchema = 0;
3174 if( zSchema==0 && i==objc-2 && z[0]!='-' ){
3175 zSchema = z;
3196 xrc = sqlite3_deserialize(pDb->db, zSchema, pData, len, len, flags);
3202 sqlite3_file_control(pDb->db, zSchema,SQLITE_FCNTL_SIZE_LIMIT,&mxSize);
3743 const char *zSchema = objc>=3 ? Tcl_GetString(objv[2]) : "main";
3751 pData = sqlite3_serialize(pDb->db, zSchema, &sz, SQLITE_SERIALIZE_NOCOPY);
3755 pData = sqlite3_serialize(pDb->db, zSchema, &sz, 0);

Completed in 153 milliseconds