Hi guys i can connect Derby via Eclipse Database Development but i cannot connect Derby with same url with Eclipse Database Development's through Hibernate. Error :"Caused by: java.sql.SQLException: Another instance of Derby may have already booted the database "
|
|
Just finished a project that did this, using Derby with Hibernate, a couple of days ago. (With Derby running in the same JVM.) As I understand it when you use the Embedded driver it by default starts the database instance as part of the driver and as long as you hang onto the connection the database is running. But for Hibernate it likes to have a The above answer is correct, it is really a good idea to start Derby as a Network DB Server, even if your in the same JVM. You can still use the embedded JDBC driver which seems to know when the database your connecting to is in Network mode and adjusts accordingly. (This also allows using a third party tool to connect to the database and view and edit the data and schema while it is running, very handy for debugging.)
Once the database is running you then stick a
The |
||
|
|
|
|
It seems as if you are running Derby as an embedded DB and not a DB Server.
Eclipse will start another JVM, when you start testing your program and not allow to conenect to the embedded DB in eclipse. I think the how to use Derby as a network DB Server can help you. |
||
|
