-
Notifications
You must be signed in to change notification settings - Fork 150
Description
Is your feature request related to a problem? Please describe.
I couldn't find any UI for the SQLite database attach feature. With this feature you can open multiple .db files and when running queries you can select from either opened .db file.
The feature itself does work, because attaching databases can be done via a query.
ATTACH DATABASE 'C:\test.db' AS test;Running queries against this newly opened .db returns results as expected.
Describe the solution you'd like
I want the ability in the UI to attach more .db files to the current connection.
Additionally, any databases that are attached via a query should also show up in the UI.
I see now that when pressing the "Refresh" button the attached databases do show up.
Describe alternatives you've considered
I've searched through the issues and discussions and couldn't find anything about this.
The query method works for now, but if this UI is added then I can ditch my old client (SQLiteSpy) completely :).
Additional context
None.
Thanks!
