Hi,
Hibernate version: 3.2.2
Database: MySQL version: 5.0.27
I have a huge excel table which I would like to insert in a db. There is a lot of information on that excel file. Depending on the criteria, the info is written in a different tables.
Every table has a different name but the same schema, so I though to use one single POJO as my model for the table.
Is it possible to tell hibernate to create the table and at the same time it will update the mapping file? May be is SchemaUpdate or SchemaExport a solution?
I want to find a nice way to auto create tables using a predefined model using hibernate3. I would like to use hibernate as my default JPA in my project, that's way I am looking to find a way to do that.
Any Ideas or comments :-))
Jero
|