Add Trino support
A Java SQL client for any JDBC compliant database
Brought to you by:
colbell,
gerdwagner
It would be great to get support for Trino added. For starters it could just be a choice when adding an alias.
Fyi Trino is the new name for Presto. With some pointers in the code base I might be able to get a patch going as well.
https://trino.io/blog/2020/12/27/announcing-trino.html
Ideally it could be expanded to automatically load the newest JDBC driver, More could even include functions support and such but that is something to deal with later based on demand ;-)
You are welcome to add a driver definition. You find them in
sql12/core/src/net/sourceforge/squirrel_sql/client/resources/defaults/default_drivers.xml
We do not ship JDBC drivers with SQuirreL. But you may put the download web page in your driver definition.
In case you'd also want to write a Trino Plugin you may check out some existing database specific Plugins as an example. A rather simple example is
sql12/plugins/informix/
a more complex example is
sql12/plugins/oracle