Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c475 const char *zTable, in createIncrblobChannel() argument
490 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob); in createIncrblobChannel()
2952 char *zTable; /* Insert data into this table */ in DbObjCmd() local
2989 zTable = Tcl_GetStringFromObj(objv[3], 0); in DbObjCmd()
3008 zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable); in DbObjCmd()
3010 Tcl_AppendResult(interp, "Error: no such table: ", zTable, (char*)0); in DbObjCmd()
3032 zConflict, zTable); in DbObjCmd()
3480 const char *zTable; in DbObjCmd()
3497 zTable = Tcl_GetString(objv[objc-3]); in DbObjCmd()
3503 interp, pDb, zDb, zTable, zColumn, (sqlite3_int64)iRow, isReadonly in DbObjCmd()
/freebsd/contrib/sqlite3/
H A Dshell.c15716 const char *zTable = pScan->pTab->zName; in idxCreateFromCons() local
15717 int quoteTable = idxIdentifierRequiresQuotes(zTable); in idxCreateFromCons()
15727 zName = sqlite3_mprintf("%s_idx_%08x", zTable, h); in idxCreateFromCons()
15754 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons()
26834 const char *zTable; in dump_callback() local
26843 zTable = azArg[0]; in dump_callback()
26846 if( zTable==0 ) return 0; in dump_callback()
26851 if( cli_strcmp(zTable, "sqlite_sequence")==0 && !noSys ){ in dump_callback()
26867 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){ in dump_callback()
26869 }else if( cli_strncmp(zTable, "sqlite_", 7)==0 ){ in dump_callback()
[all …]
H A Dsqlite3.h8168 const char *zTable,
H A Dsqlite3.c8489 const char *zTable,
105957 const char *zTable, /* The table containing the blob */ argument
105979 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){
105995 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
105998 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
106002 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
106007 zTable);
106012 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
111399 const char *zTable; local
111405 zTable = 0;
[all …]