使用 Grails 连接到 MS Access 数据库时使用的方言

发布于 2024-11-08 05:16:31 字数 131 浏览 0 评论 0原文

我要在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森末i 2024-11-15 05:16:31

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.

三生一梦 2024-11-15 05:16:31

以下是 xml 语法的示例:

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
        <hibernate-configuration>
       <session-factory>
        <property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
        <property name="hibernate.connection.driver_class">sun.jdbc.odbc.JdbcOdbcDriver</property>
        <property name="hibernate.connection.url">jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=d:/temp/Database9.accdb</property>
        <property name="connection.username"></property>
        <property name="connection.password"></property>
        <property name="connection.pool_size">1</property>
        <property name="current_session_context_class">thread</property>
        <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
        <property name="show_sql">true</property>
        <property name="hbm2ddl.auto">update</property>          
        <mapping resource="com/prj/domain/prj.hbm.xml"/>
    </session-factory> </hibernate-configuration>

Here is an example of the xml syntax:

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
        <hibernate-configuration>
       <session-factory>
        <property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
        <property name="hibernate.connection.driver_class">sun.jdbc.odbc.JdbcOdbcDriver</property>
        <property name="hibernate.connection.url">jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=d:/temp/Database9.accdb</property>
        <property name="connection.username"></property>
        <property name="connection.password"></property>
        <property name="connection.pool_size">1</property>
        <property name="current_session_context_class">thread</property>
        <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
        <property name="show_sql">true</property>
        <property name="hbm2ddl.auto">update</property>          
        <mapping resource="com/prj/domain/prj.hbm.xml"/>
    </session-factory> </hibernate-configuration>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文