tool « Schema « JPA Q&A





1. if hibernate can generate the db schema, how to tell it to create a column of nvarchar(max)?    stackoverflow.com

if hibernate can generate the db schema, how to tell it to create a column of nvarchar(max) in a sql server db? what tools are available to go the other way around, ...

2. Tools roadmap - SchemaExport    forum.hibernate.org

Just read today's notes on the current state of the Tools and their respective directions. Hurrah all, I love them, especially SchemaExport. Thank you. Couple comments: 1. I very definitely use SchemaUpdate during development; SchemaUpdate forces a drop of the whole thing, so I have to reload a large dataset even if I've only changed a wee bit of some unrelated ...

3. schema generation tool error    forum.hibernate.org

I have been using the schema generation tool to generate my database (in Oracle) from my mapping file successfully for some time, but am now getting an error : Schema text failed: could not instantiate id generator: There is no additional information and no stacktrace, and I cannot determine why this has happened - it has worked before, and i have ...

4. Having trouble with SchemaUpdate tool ()    forum.hibernate.org

Hibernate 2.1.8 Hi, I'm running the SchemaExport Ant task, and it takes this error: Code: (util.XMLHelper 48 ) Error parsing XML: XML InputStream(35) The content of element type "set" is incomplete, it must match "(meta*,(cache|jcs-cache)?,key,(element|one-to-many|many-to-many|composite-element|many-to-any))". ...when parsing this mapping ...

5. H3 SchemaUpdate tool/MySQL 4.1.14 - key length too long    forum.hibernate.org

Mmm... okay. This appears to be a bug in MySQL: http://bugs.mysql.com/bug.php?id=4541 There appears to be a number of workarounds below: 1) Adjust character set for columns to be latin1., or 2) Specify character set to be used by driver. Either by driver URL (still would like to hear of someone using ConnectorJ successfully here) or using the Hibernate connection properties. eg. ...

6. Recomendet tools to reverse-engineer existing DB schema ?    forum.hibernate.org

I am a newbee regarding Hibernate and I am looking for the best fitting tools for my development: I use the following IDE and database: - NetBeans 5.5 with Visual Web Pack - SYBASE /iAnywhere Adaptive Server Anywhere 9 I write a web-app that accesses an existing database. I cannot change the db schema. This means I have to perform a ...

7. Wrong table name set when using schema export tool    forum.hibernate.org

I have a class Story that inherits from a base class called DomainObject that has common properties factored into it. When I explicitly set the table name to "Story" in the Story class using annotations, the schema export tool still creates a table named "domainobject". I'm using hibernate 3. Database is mysql5. Here is the relevant code. Anybody know what's up? ...