Vishal
Vishal

Reputation:

Question about HSQL DB in memory database

I have created a memory-only server instance of hsqldb , is it possible for me to connect to this memory database from 2 clients in separate jvms ?

Upvotes: 0

Views: 1398

Answers (1)

rafa.ferreira
rafa.ferreira

Reputation: 2017

Let me see if I understand your point: but starting your HSQLDB you can consider as a normal DataBase, like MySQL/PostgreSQL.

If you have the driver/IP/port/user/passwd to connect to your HSQLBD you can put any 'client' communicating with your database.

I know that its not my application, but remembering that HSQLDB is normally used for test purpose. Have some limitations "Number of columns, tables, indexes, size of columns and so on is limited only by the memory"

Nice to read: http://hsqldb.org/doc/guide/index.html

Cheers

Upvotes: 3

Related Questions