1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

SQLStudio: Show script execution results in table

Show the results of executing a script in the TableView (if there are
results to show).
This commit is contained in:
martinfalisse 2022-06-05 17:59:54 +02:00 committed by Linus Groh
parent 061525282f
commit e9541bca31
2 changed files with 24 additions and 0 deletions

View file

@ -57,6 +57,7 @@ private:
RefPtr<GUI::TableView> m_query_results_table_view;
RefPtr<SQL::SQLClient> m_sql_client;
Vector<Vector<String>> m_results;
String read_next_sql_statement_of_editor();
Optional<String> read_next_line_of_editor();