‘Table not found in statement’ utilizando hsqldb 2.2.5 con hibernate 3.x
Fixed the ‘Table not found in statement’ problem adding to hibernate.cfg.xml
<property name="hbm2ddl.auto">create</property>
hibernate.hbm2ddl.auto |
Automatically validates or exports schema DDL to the database when the SessionFactory is created. With create-drop, the database schema will be dropped when the SessionFactoryis closed explicitly.e.g. validate | update | create | create-drop |
Source: Hibernate configuration
Advertisement