I am using Glassfish v3 with Apache Derby 10.6.1 (Network Server Mode)
I am trying to deploy a sample web application (Beginnig
Java EE 6 platform with Glassfish3, chapter 10) with EJBs and Entities.
persistence.xml:
During deployment I get the exception:
Deployment encountered SQL Exceptions:
Got SQLException executing statement "CREATE TABLE SEQUENCE (SEQ_NAME VA
RCHAR(50) NOT NULL, SEQ_COUNT DECIMAL(15), PRIMARY KEY (SEQ_NAME))": java.sql.SQ
LException: Table/View 'SEQUENCE' ist bereits in Schema 'APP' vorhanden.
(translation of the German part: 'SEQUENCE' exists already in Schema 'App'
the application gets deployed anyway.
after that I cannot connect with ij:
connect '
jdbc:derby://localhost:1527/book'
ij says the database does not exist.
What do I have to do to avoid the SQL command?
And is there a way to find out which databases a present in Derby?