Searched refs:zTable (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/sqlite3/tea/generic/ |
H A D | tclsqlite3.c | 419 const char *zTable, in createIncrblobChannel() argument 434 rc = sqlite3_blob_open(db, zDb, zTable, zColumn, iRow, !isReadonly, &pBlob); in createIncrblobChannel() 2471 char *zTable; /* Insert data into this table */ in DbObjCmd() local 2507 zTable = Tcl_GetStringFromObj(objv[3], 0); in DbObjCmd() 2526 zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable); in DbObjCmd() 2528 Tcl_AppendResult(interp, "Error: no such table: ", zTable, (char*)0); in DbObjCmd() 2550 zConflict, zTable); in DbObjCmd() 2977 const char *zTable; in DbObjCmd() 2994 zTable = Tcl_GetString(objv[objc-3]); in DbObjCmd() 3000 interp, pDb, zDb, zTable, zColumn, (sqlite3_int64)iRow, isReadonly in DbObjCmd()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 12904 const char *zTable = pScan->pTab->zName; in idxCreateFromCons() local 12905 int quoteTable = idxIdentifierRequiresQuotes(zTable); in idxCreateFromCons() 12915 zName = sqlite3_mprintf("%s_idx_%08x", zTable, h); in idxCreateFromCons() 12942 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons() 22590 const char *zTable; in dump_callback() local 22599 zTable = azArg[0]; in dump_callback() 22602 if( zTable==0 ) return 0; in dump_callback() 22607 if( cli_strcmp(zTable, "sqlite_sequence")==0 && !noSys ){ in dump_callback() 22609 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){ in dump_callback() 22611 }else if( cli_strncmp(zTable, "sqlite_", 7)==0 ){ in dump_callback() [all …]
|
H A D | sqlite3.h | 7793 const char *zTable,
|
H A D | sqlite3.c | 8106 const char *zTable, 102407 const char *zTable, /* The table containing the blob */ 102428 if( !sqlite3SafetyCheckOk(db) || zTable==0 || zColumn==0 ){ 102444 pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb); 102447 sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable); 102451 sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable); 102456 sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable); 107803 const char *zTable; 107809 zTable = 0; 107829 zTable = pLeft->u.zToken; [all …]
|