如何默认将Int映射为int8?
我有一个现有的模型实现,需要使用新的数据库。
我可以配置 Hibernate 将 int 变量默认映射到 int8 而不是 int4 吗?
I have an existing model implementation that needs to work with a new database.
Can i configure Hibernate to map int variables to int8 instead of int4 by default?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据评论中的建议,为我的特定数据库类型创建了新的方言。
Created a new Dialect for my specific Database type as proposed in a comment.