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

SQLStudio: Display real column names in the results tab

This commit is contained in:
Timothy Flynn 2023-02-03 10:49:58 -05:00 committed by Andreas Kling
parent 4fe437b4d2
commit e96df1599c
2 changed files with 7 additions and 3 deletions

View file

@ -64,6 +64,7 @@ private:
RefPtr<SQL::SQLClient> m_sql_client;
Optional<SQL::ConnectionID> m_connection_id;
Vector<DeprecatedString> m_result_column_names;
Vector<Vector<DeprecatedString>> m_results;
void read_next_sql_statement_of_editor();