[
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1853?page=c...
]
Mattias Jiderhamn commented on HHH-1853:
----------------------------------------
As of Hibernate 3.2.1 the workaround mentioned above does no longer work, since a call to
buildSettings() is introduced in
org.hibernate.cfg.Configuration.generateSchemaUpdateScript(). Since settings have already
been build, Spring will throw "No local DataSource found for configuration -
dataSource property must be set on LocalSessionFactoryBean" from its
LocalDataSourceConnectionProvider.
Suddenly this moves from being a "Minor" problem to a "Major", since
we cannot run our tests with 3.2.1.
CREATE SCHEMA inside database-object need to execute before tables
are created
------------------------------------------------------------------------------
Key: HHH-1853
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1853
Project: Hibernate3
Type: Improvement
Versions: 3.1.3
Environment: hsqldb 1.8.0
Reporter: Mattias Jiderhamn
Priority: Minor
In order to have Hibernate create database schemas for hsqldb, you have to insert a
<database-object> in your mapping file
(
http://forums.hibernate.org/viewtopic.php?p=2305138). Problem is, all the database-object
statements are executed after the tables are created, so tables in non-default schemas
will not be created. To get around this, you have to first use
Configuration.generateSchemaCreationScript() to get the schemas, and then
Configuration.generateSchemaUpdateScript() to get the tables inside the schemas.
(This is a bit problematic when using Springs LocalSessionFactoryBean)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira