0 Replies Latest reply on Jun 16, 2008 10:48 AM by mlavannis

    EJB3 Entity persistence OK with JBoss 4.2.2GA, but fails wil

      I wrote a very basic EJB3 entity and deployed it on JBoss 4.2.2GA - it worked fine. But when I tried to deploy the exact same EAR on JBoss 5.0.0 Beta4, the deployment failed with the following error:

      10:42:51,673 INFO [SchemaUpdate] Running hbm2ddl schema update
      10:42:51,673 INFO [SchemaUpdate] fetching database metadata
      10:42:51,674 INFO [SchemaUpdate] updating schema
      10:42:51,686 INFO [DatabaseMetadata] table not found: Book
      10:42:51,689 INFO [DatabaseMetadata] table not found: Book
      10:42:51,691 ERROR [SchemaUpdate] Unsuccessful: create table database.Book (id integer not null auto_increment, author varchar(255), title varchar(255), primary key (id))
      10:42:51,698 ERROR [SchemaUpdate] CREATE command denied to user 'jboss'@'localhost' for table 'book'
      10:42:51,698 INFO [SchemaUpdate] schema update complete

      It appears like it is unable to create the "Book" table ("Book" is the name of my entity EJB class).

      However, note the SQL query it uses the create the table:
      create table database.Book (id integer not null auto_increment, author varchar(255), title varchar(255), primary key (id))

      It qualifies the table name "Book" with the identifier "database" - this is what is causing it to fail. In my EJB, I have set the schema to "jbossdb" wich is a valid database. It is not clear to me why the query does not use "jbossdb.Book" instead of "database.Book"

      I am using MySQL 5.1