1. if hibernate can generate the db schema, how to tell it to create a column of nvarchar(max)? stackoverflow.comif 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.orgJust 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.orgI 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 ( |
5. H3 SchemaUpdate tool/MySQL 4.1.14 - key length too long forum.hibernate.orgMmm... 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.orgI 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.orgI 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? ... |