hi, i still cannot find any solution even try to search on internet.
I wanna create a table which is customize to database I use (mysql 5)
I had create all the files include hbm, cfg, java bean and so on.
Then I run schemaExport to create the table, the version of mysql default table engine is innodb, which is not what i want.
I wanna create a table which other engine type. which lok like :
create table person
(
...
) engine = myisam;
how can i do it in hibernate ?
_________________ happy hacking !
|