Matthew Hauck <[email protected]> writes: > I am writing about the well known error: "Failed to start database > '...' with class loader ..." I realize that you cannot have two > simultaneous connections from two different JVMs to a derby embedded > database. My question is whether or not it is possible to disconnect > / "unload" / "unboot" one connection in order to load up the other > one, etc. Or does the first JVM have to entirely stop before the next > one can make a connection?
Hi Matt, You can shut down a database without stopping the JVM, and then it should be possible to boot it in another JVM. Details here: http://db.apache.org/derby/docs/10.9/devguide/tdevdvlp40464.html -- Knut Anders
