Hiya,
Our current hbm files were written with our Oracle instance in mind. Thus the all have schema="tableOwner" in them.
I'd been hoping to use hypersonic for testing, and have setup most things so that they work.
I've got:
jdbc:hsqldb:mem:.
and
<prop key="hibernate.hbm2ddl.auto">create-drop</prop>
However, hibernate is trying to create tables in the "tableOwner" schema, which does not exist. Is there a property to autocreate the schema for an in memory database?
Everything's fine in my tests with the 'schema="tableOwner"' bit removed, but then those hbm files no longer work with oracle.
|