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.c15754 const char *zTable = pScan->pTab->zName; in idxCreateFromCons() local
15755 int quoteTable = idxIdentifierRequiresQuotes(zTable); in idxCreateFromCons()
15765 zName = sqlite3_mprintf("%s_idx_%08x", zTable, h); in idxCreateFromCons()
15792 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons()
26872 const char *zTable; in dump_callback() local
26881 zTable = azArg[0]; in dump_callback()
26884 if( zTable==0 ) return 0; in dump_callback()
26889 if( cli_strcmp(zTable, "sqlite_sequence")==0 && !noSys ){ in dump_callback()
26905 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){ in dump_callback()
26907 }else if( cli_strncmp(zTable, "sqlite_", 7)==0 ){ in dump_callback()
[all …]
H A Dsqlite3.h8170 const char *zTable,
H A Dsqlite3.c8491 const char *zTable,
106115 const char *zTable, /* The table containing the blob */ argument
106137 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){
106153 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb);
106156 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable);
106160 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable);
106165 zTable);
106170 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable);
111578 const char *zTable; local
111584 zTable = 0;
[all …]