Searched refs:zTable (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 462 const char *zTable, in createIncrblobChannel() argument 477 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob); in createIncrblobChannel() 2519 char *zTable; /* Insert data into this table */ in DbObjCmd() local 2556 zTable = Tcl_GetStringFromObj(objv[3], 0); in DbObjCmd() 2575 zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable); in DbObjCmd() 2577 Tcl_AppendResult(interp, "Error: no such table: ", zTable, (char*)0); in DbObjCmd() 2599 zConflict, zTable); in DbObjCmd() 3032 const char *zTable; in DbObjCmd() 3049 zTable = Tcl_GetString(objv[objc-3]); in DbObjCmd() 3055 interp, pDb, zDb, zTable, zColumn, (sqlite3_int64)iRow, isReadonly in DbObjCmd()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 13743 const char *zTable = pScan->pTab->zName; in idxCreateFromCons() local 13744 int quoteTable = idxIdentifierRequiresQuotes(zTable); in idxCreateFromCons() 13754 zName = sqlite3_mprintf("%s_idx_%08x", zTable, h); in idxCreateFromCons() 13781 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons() 25119 const char *zTable; in dump_callback() local 25128 zTable = azArg[0]; in dump_callback() 25131 if( zTable==0 ) return 0; in dump_callback() 25136 if( cli_strcmp(zTable, "sqlite_sequence")==0 && !noSys ){ in dump_callback() 25138 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){ in dump_callback() 25140 }else if( cli_strncmp(zTable, "sqlite_", 7)==0 ){ in dump_callback() [all …]
|
H A D | sqlite3.h | 8004 const char *zTable,
|
H A D | sqlite3.c | 8323 const char *zTable, 103700 const char *zTable, /* The table containing the blob */ 103722 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){ 103738 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb); 103741 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable); 103745 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable); 103750 zTable); 103755 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable); 109104 const char *zTable; 109110 zTable = 0; [all …]
|