Read the rules before posting!
http://www.hibernate.org/ForumMailingli ... AskForHelp
[b]Hibernate version: 3.0[/b]
[b]Mapping documents:[/b]
[b]Code between sessionFactory.openSession() and session.close():[/b]
[b]Full stack trace of any exception that occurs:[/b]
[b]Name and version of the database you are using: postgresql 8.0 [/b]
[b]The generated SQL (show_sql=true):[/b]
[b]Debug level Hibernate log excerpt:[/b]
Hi,
Am actually trying to create tables in my db from xdoclet tag placed in each of my class.
For my class User, I've put the following
@hibernate.class
table = "user"
but, table user has not been created. I then made the following modification:
@hibernate.class
table = "my_user"
Now it has been created. It seems that the word 'user' is reserved for Hibernate!! Is this true?
Can anyone please explain why this is so. Or have I made a mistake.
thanks in advance