Searched refs:zFullTabName (Results 1 – 1 of 1) sorted by relevance
24799 char *zFullTabName; /* Table name with schema if applicable */ in do_meta_command() local24937 zFullTabName = sqlite3_mprintf("\"%w\".\"%w\"", zSchema, zTable); in do_meta_command()24939 zFullTabName = sqlite3_mprintf("\"%w\"", zTable); in do_meta_command()24941 zSql = sqlite3_mprintf("SELECT * FROM %s", zFullTabName); in do_meta_command()24942 if( zSql==0 || zFullTabName==0 ){ in do_meta_command()24953 zCreate = sqlite3_mprintf("CREATE TABLE %s", zFullTabName); in do_meta_command()24971 sqlite3_free(zFullTabName); in do_meta_command()25004 sqlite3_snprintf(nByte+20, zSql, "INSERT INTO %s VALUES(?", zFullTabName); in do_meta_command()25022 sqlite3_free(zFullTabName); in do_meta_command()