Skip to content

Tag: derby

Tables not generated using Derby and OpenJPA

Tables are not generated in database even when i set attribute javax.persistence.schema-generation.database.action to create and connection string javax.persistence.jdbc.url to jdbc:derby:db;create=true persistence.xml: my testing method: As you can see, I also tried to override properties by supplying them t…

Derby: Another instance of Derby may have already booted the database

I would like to use Derby in a Network Server Mode and followed the instructions on their website. Starting derby: Connecting with ij: Connecting to Derby in Java: The DriverManager.getConnection() is failing with: Haven’t I just started derby in network server mode? Why am I getting this error? Answer …