summaryrefslogtreecommitdiff
path: root/Userland/DevTools/SQLStudio/MainWidget.h
diff options
context:
space:
mode:
authormartinfalisse <martinmotteditfalisse@gmail.com>2022-06-05 17:59:54 +0200
committerLinus Groh <mail@linusgroh.de>2022-06-30 12:22:45 +0100
commite9541bca31739f262709651aae86ba576b4553ab (patch)
tree0fcaef44d2bb8b76ae88a10bd5a4402fce223f9b /Userland/DevTools/SQLStudio/MainWidget.h
parent061525282f9f58d6b0005490c8d4cda821fafb70 (diff)
downloadserenity-e9541bca31739f262709651aae86ba576b4553ab.zip
SQLStudio: Show script execution results in table
Show the results of executing a script in the TableView (if there are results to show).
Diffstat (limited to 'Userland/DevTools/SQLStudio/MainWidget.h')
-rw-r--r--Userland/DevTools/SQLStudio/MainWidget.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/DevTools/SQLStudio/MainWidget.h b/Userland/DevTools/SQLStudio/MainWidget.h
index 4698a9c5c1..d5955eda3e 100644
--- a/Userland/DevTools/SQLStudio/MainWidget.h
+++ b/Userland/DevTools/SQLStudio/MainWidget.h
@@ -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();