see if I can ask about this in an understandable way ...
I started with grails and created a domain class called a user. As far as I understand, Hibernate is used to map this domain class to the database. This works very well with hsqldb.
Now I tried switching to javaDB and getting an error message because the table is called "user" (which seems to be a reserved word for javaDB).
So, a statement like
create table user ...
will result in an error message.
create table "user" ...
works, but Hibernate doesn't seem to put quotes around the table name.
How do I configure Hibernate to use quotes to make it work with my table name?
PS: yes, I know, I could map the domain class to a different table name ... :-)
source share