For unit testing I use a derby in-memory database.
Is there any chance to connect to this database using a tool like Eclipse Datasource Explorer when the test is running?
I googled a lot and sometimes I found something like:
Connection-URL: jdbc:derby://localhost:1527/memory/mydb...
But it did not work for me.
It says that 1527 is the default port.
Is it possible at all to connect to a derby memory database with a tool like eclipse explorer? Does the database open a connection-port to connect to? Or is there something special I have to configure for this to work?
Thanks, Alex