我可以使用 Hibenrate hbm2ddl 在同一个数据库中创建 MyISAM 和 InnoDB 表吗
我的数据库中需要 MyISAM 表和 InnoDB 表,我使用 hbm2ddl 来创建它们。我可以使用 Hibenrate hbm2ddl 在同一数据库中创建 MyISAM 和 InnoDB 表吗? 似乎选择方言迫使我使用其中一种。
I need both MyISAM tables and InnoDB tables in my database, I am using hbm2ddl to create them. Can I create both MyISAM and InnoDB tables in the same database using Hibenrate hbm2ddl?
It seems that selecting the dialect forces me to use one or the other.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,正如您所写,如果您使用 MySQL5InnoDBDialect,Hibernate 将生成 InnoDB 表:
使用此方言将导致 Hibernate 在
末尾添加
语句。但这是全局设置,您无法在实体级别调整此行为。ENGINE=InnoDB
>CREATE TABLE要使用 hbm2ddl 并混合使用两个表引擎,我的建议是在事实发生后更改特定表。为此,您可以使用 5.7。辅助数据库对象。从文档中:
另一种选择是 (ab) 使用 Hibernate import.sql 功能 执行
更改。
Well, as you wrote, Hibernate will generate InnoDB tables if you use the
MySQL5InnoDBDialect
:Using this dialect will cause Hibernate to add the
ENGINE=InnoDB
at the end of theCREATE TABLE
statements. But this is global setting, you can't tweak this behavior at the entity level.To use hbm2ddl and mix both tables engines, my suggestion would be to ALTER specific tables after the facts. To do so, you could use 5.7. Auxiliary database objects. From the documentation:
Another option would be to (ab)use the Hibernate import.sql feature to perform the
ALTER
.