使用 Grails 连接到 MS Access 数据库时使用的方言
我要在使用 grails 的应用程序中连接到 MS Access 数据库。
我正在配置 Datasource.groovy,但不确定要使用的方言。 有什么帮助吗?
编辑:对这个问题的想法???
谢谢!
I am to connect to MS Access database in my application that uses grails.
I am in the process of configuring my Datasource.groovy, but am not sure of the dialect to be used.
Any help?
EDIT: Thoughts on this question???
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Grails 在底层使用 Hibernate,看来您需要一些努力才能使 Hibernate 与 Access 一起工作。不幸的是,Hibernate 不正式支持 Access。所以我建议换成官方支持的数据库(MySQL、Postgres、MS SQL...)
但是如果你坚持使用 Access,你可以从 这个问题。需要付出一些努力才能使事情发挥作用,并且记住,这些东西将来可能无法维护。
Grails uses Hibernate under the hood, and it seems you need some efforts to make Hibernate to work with Access. Unfortunately, Access is not supported officially by Hibernate. So I recommend changing into an officially supported database(MySQL, Postgres, MS SQL...)
But if you insist using Access, you can take the Hibernate dialect for Access from this question. It will take some effort to make things work, and remember, this stuff maynot be maintained in the future.
以下是 xml 语法的示例:
Here is an example of the xml syntax: