...
Prerequisites
Minimum Java version 1.8
For Java +17 these JVM parameters must be added to the command line:
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.math=ALL-UNNAMED
--add-opens java.base/java.util=ALL-UNNAMED
--add-opens java.base/java.util.concurrent=ALL-UNNAMED
--add-opens java.base/java.net=ALL-UNNAMED
--add-opens java.base/java.text=ALL-UNNAMED
How it works
SQL Cloud is a 100% JavaScript database. Therefore a browser page is always required to run it.
...
The database port does not matter. You can use any one available in the local machine and the JDBC Driver will use it for all the local communication. This is also configured in the JDBC connection URL.
Limitations
At the moment. The schema name is not supported in the queries running via JDBC.
Ex:
SELECT * FROM PUBLIC.PROJECT
will fail. Please use this instead:
SELECT * FROM PROJECT
with no schema name prefix anywhere,