Home
last modified time | relevance | path

Searched refs:zTable (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/public-domain/sqlite/dist/
Dshell.c12825 const char *zTable = pScan->pTab->zName; in idxCreateFromCons() local
12826 int quoteTable = idxIdentifierRequiresQuotes(zTable); in idxCreateFromCons()
12836 zName = sqlite3_mprintf("%s_idx_%08x", zTable, h); in idxCreateFromCons()
12863 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons()
21327 const char *zTable; in dump_callback() local
21336 zTable = azArg[0]; in dump_callback()
21339 if( zTable==0 ) return 0; in dump_callback()
21344 if( cli_strcmp(zTable, "sqlite_sequence")==0 && !noSys ){ in dump_callback()
21346 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){ in dump_callback()
21348 }else if( cli_strncmp(zTable, "sqlite_", 7)==0 ){ in dump_callback()
[all …]
Dsqlite3.h7768 const char *zTable,
Dsqlite3.c8081 const char *zTable,
101867 const char *zTable, /* The table containing the blob */
101888 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){
101904 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
101907 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
101911 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
101916 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
107188 const char *zTable;
107194 zTable = 0;
107214 zTable = pLeft->u.zToken;
[all …]