After creating a new table using SQL tab, the table is not shown in the table list on the left

Issue #238 open
Christopher Kramer created an issue

Originally reported on Google Code with ID 238

What steps will reproduce the problem?
1. use the SQL tab
2. enter a CREATE TABLE statement
3. click "go"

What is the expected output? What do you see instead?
On the left there is the list of tables without the new table.
Instead it would be better if the list already included the table that was just created.

The same problem for DROP TABLE or ALTER TABLE RENAME TO

Problem is currently that the list of tables is echoed before the sql statement has
been performed. This is the case because it might produce a result set that needs to
be displayed (if it's a SELECT for example). We should perform the SQL statement earlier
and still output the result set later.

Reported by crazy4chrissi on 2013-12-25 15:52:55

Comments (2)

  1. Christopher Kramer reporter
    Probably, this issue gets fixed automatically when issue #104 is fixed.
    

    Reported by crazy4chrissi on 2014-01-02 15:20:42

  2. Log in to comment