java - Connect to in-memory HSQL database (launched by Spring) from another client -
Text after "
I created an HSQL database with the following spring configuration:
& lt; JDBC: Embedded -Database ID = "Data Source" type = "HSQL" & gt; & Lt; Jdbc: script space = "resource / sql / schema.sql" /> & Lt; Jdbc: script space = "resource / sql / test-data.sql" /> & Lt; / JDBC: Embedded-Database & gt; Everything works fine (for one time)! To change the status of some tables for development reasons, I want to connect that database to another client (I am using database support from Intelystem Ultimate). Is this possible? how? If not, is there any option / executive?
You can not open HSQL databases are opened in embedded mode in exclusive mode and only one single JVM Can be used from
There are different options:.
Instead of using the database in server mode, there is a dedicated application database that opens in the exclusive mode (server), and then connects to any client application server. Embedded-Database ID = "Data Source" type = "HSQL" & gt; Because this is a true JDBC server & lt Html
Comments
Post a Comment