Description
Love the plugin!
Has there been any thought about adding databases and views to the drawer? What I would like to do is connect to the server--say, jdbc://sqlserver.example
, and then have a databases drop down menu that functions in a way similar to how Schemas functions now. So first choose server, then choose database, then choose schema. And similarly, it would also be hugely beneficial to see views. So the interface would be server --> databases --> schemas --> [tables, views]. In the case of sql server, for example, it would be SELECT name FROM sys.databases
--> SELECT schema_name FROM information_schema.schemata
--> [SELECT table_schema, table_name FROM information_schema.tables
, SELECT name FROM sys.views
]. Similarly for postgres/mysql/oracle. This is similar to functionality you may find in DataGrip.