Lines Matching refs:zTable
9436 int iDb; /* Database containing table zTable */
10344 const char *zTable = pScan->pTab->zName;
10345 int quoteTable = idxIdentifierRequiresQuotes(zTable);
10355 zName = sqlite3_mprintf("%s_idx_%08x", zTable, h);
10382 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols);
18567 const char *zTable;
18576 zTable = azArg[0];
18579 if( zTable==0 ) return 0;
18584 if( cli_strcmp(zTable, "sqlite_sequence")==0 && !noSys ){
18586 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){
18588 }else if( cli_strncmp(zTable, "sqlite_", 7)==0 ){
18601 zTable, zTable, zSql);
18618 azCol = tableColumnList(p, zTable);
18627 appendText(&sTable, zTable, quoteChar(zTable));
18657 appendText(&sSelect, zTable, quoteChar(zTable));
20038 ** Try to transfer data for table zTable. If an error is seen while
20045 const char *zTable
20053 int nTable = strlen30(zTable);
20058 zQuery = sqlite3_mprintf("SELECT * FROM \"%w\"", zTable);
20071 "INSERT OR IGNORE INTO \"%s\" VALUES(?", zTable);
20131 zTable);
20135 utf8_printf(stderr, "Warning: cannot step \"%s\" backwards", zTable);
22785 char *zTable = 0; /* Insert data into this table */
22817 }else if( zTable==0 ){
22818 zTable = z;
22846 if( zTable==0 ){
22933 zFullTabName = sqlite3_mprintf("\"%w\".\"%w\"", zSchema, zTable);
22935 zFullTabName = sqlite3_mprintf("\"%w\"", zTable);