Lines Matching defs:zTable

11995   int iDb;                        /* Database containing table zTable */
12904 const char *zTable = pScan->pTab->zName;
12905 int quoteTable = idxIdentifierRequiresQuotes(zTable);
12915 zName = sqlite3_mprintf("%s_idx_%08x", zTable, h);
12942 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols);
22590 const char *zTable;
22599 zTable = azArg[0];
22602 if( zTable==0 ) return 0;
22607 if( cli_strcmp(zTable, "sqlite_sequence")==0 && !noSys ){
22609 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){
22611 }else if( cli_strncmp(zTable, "sqlite_", 7)==0 ){
22624 zTable, zTable, zSql);
22641 azCol = tableColumnList(p, zTable);
22650 appendText(&sTable, zTable, quoteChar(zTable));
22680 appendText(&sSelect, zTable, quoteChar(zTable));
24030 ** Try to transfer data for table zTable. If an error is seen while
24037 const char *zTable
24045 int nTable = strlen30(zTable);
24050 zQuery = sqlite3_mprintf("SELECT * FROM \"%w\"", zTable);
24062 "INSERT OR IGNORE INTO \"%s\" VALUES(?", zTable);
24121 zTable);
24125 eputf("Warning: cannot step \"%s\" backwards", zTable);
26894 char *zTable = 0; /* Insert data into this table */
26895 char *zSchema = 0; /* Schema of zTable */
26925 }else if( zTable==0 ){
26926 zTable = z;
26954 if( zTable==0 ){
27038 if( sqlite3_table_column_metadata(p->db, zSchema, zTable,0,0,0,0,0,0) ){
27044 zSchema ? zSchema : "main", zTable);
27082 zTable, zSchema);
27108 + strlen(zTable)*2 + 2 /* Quoted table name */
27117 zSchema, zTable);
27119 sqlite3_snprintf(nByte, zSql, "INSERT INTO \"%w\" VALUES(?", zTable);