Creating a shared HSQLDB database

后端 未结 2 1634
伪装坚强ぢ
伪装坚强ぢ 2021-01-05 21:25

In-process HSQLDB database are not expected to be opened by others, even for file-based storage.

The documentation hints that this is possible: Server Modes, Advance

相关标签:
2条回答
  • 2021-01-05 22:03

    I've experience with starting HQLDB in server mode outside of application and connecting from several applications to the database.

    As described in the doc the process is straight-forward.

    0 讨论(0)
  • 2021-01-05 22:09

    The following works for me:

    1. Start a server from your code, which is shown in the org.hsqldb.test.TestBase code in the HSQLDB source code. Something like:

      Server server = new Server();
      server.setDatabaseName(0, "test");
      server.setDatabasePath(0, "file:/path/to/db");
      server.start();
      
    2. In the same JVM, open a Connection to the same database the way you would in a normal (non-Server) program, like:

      conn = DriverManager.getConnection("jdbc:hsqldb:file:/path/to/db");
      

    Then use conn to execute whatever SQL you want.

    In my own experimentation this appears to work, and it works for in-memory and file database.

    Other JVMs, of course, will need to connect to the server using TCP. Trying to open the database file directly in another JVM will result in the usual error about the database being locked.

    0 讨论(0)
提交回复
热议问题