Hibernate对Access的支持的常用方法

开发 后端
Hibernate Access的支持的常用方法:下载两个jar包,一个是Access的JDBC驱动包;另一个是数据库方言包,里面有支持Access方言的类

本文向大家介绍Hibernate Access的支持的常用方法,看完本文你肯定有不少收获,希望本文能教会你更多东西

1、Hibernate  Access的支持

方法一:

下载两个jar包,一个是Access的JDBC驱动包;另一个是数据库方言包,里面有支持Access方言的类。

下载地址:http://www.hxtt.com/access.ziphttp://www.hxtt.com/test/hibernate.zip

配置如下:

xml 代码

  1. <property name="hibernate.dialect">   
  2.      com.hxtt.support.hibernate.HxttAccessDialect   
  3. property>     
  4. <property name="hibernate.connection.url">   
  5.      jdbc:access:///f:/mdbfiles/aaa.mdb   
  6. property>     
  7. <property name="hibernate.connection.driver_class">   
  8.      com.hxtt.sql.access.AccessDriver   
  9. property>   

方法二:

首先先要在ODBC里配置好我们的Access数据库,控制面板--->管理工具--->ODBC,选择系统DSN选项卡,按添加按钮,选Driver   do   Mircosoft   Access(*.mdb),完成,在DataSource   Name中输入你想要的名字比如hibtest,后面将用它来查找数据库。然后指定数据库所在位置就OK了。   
    
Hibernate描述文件可以是一个properties或xml   文件,其中最重要的是定义数据库的连接。我这里列出的是一个XML格式的hibernate.cfg.xml描述文件。   
xml 代码

  1. xml version="1.0" encoding="utf-8"?>         
  2.    PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"         
  3.    "http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">         
  4. <hibernate-configuration>         
  5.      <session-factory name="java:/hibernate/HibernateFactory">         
  6.           <property name="show_sql">trueproperty>         
  7.           <property name="connection.driver_class">         
  8.                sun.jdbc.odbc.JdbcOdbcDriver   
  9.           property>         
  10.           <property name="connection.url">         
  11.                jdbc:odbc:hibtest    
  12.           property>         
  13.           <property name="connection.username">saproperty>         
  14.           <property name="connection.password">property>         
  15.           <property name="dialect">         
  16.                net.sf.hibernate.dialect.MySQLDialect    
  17.           property>         
  18.           <mapping resource="Customer.hbm.xml"/>          
  19.      session-factory>          
  20.   hibernate-configuration>   

方法三:

  1. 1、   
  2. <property name="dialect">   
  3. org.hibernate.dialect.SQLServerDialect   
  4. property>   
  5. 2、   
  6. <property name="connection.driver_class">   
  7. sun.jdbc.odbc.JdbcOdbcDriver   
  8. property>   
  9.  3、   
  10. <property name="connection.url">   
  11. jdbc:odbc:driver={Microsoft Access Driver (*.mdb)};DBQ=E:\STDateBase\student.mdb   
  12. property>       

以上介绍Hibernate Access的支持的常用方法

【编辑推荐】

  1. Hibernate与ibatis的区别概括
  2. 浅析Hibernate orm框架
  3. 基于CBM, SIMM 和SOMA的SOA最佳实践
  4. Hibernate Callback简单概括
  5. 使用 JAX-RS 简化 REST 应用开发
责任编辑:仲衡 来源: javaeye
相关推荐

2009-06-23 10:45:18

Hibernate支持

2009-06-24 07:57:17

HibernateAccess方言

2009-09-23 17:32:07

Hibernate S

2009-06-12 15:05:03

cascadeHibernate

2009-06-16 14:36:54

Hibernate继承

2009-06-18 14:51:12

Hibernate缓存Hibernate

2009-12-07 10:02:08

SQL Server支

2009-06-26 16:33:09

saveOrUpdatHibernate

2009-06-26 16:34:50

delete()方法Hibernate S

2009-09-24 12:50:23

Hibernate F

2009-06-30 16:41:12

Hibernate的事

2014-05-30 10:51:55

PhpStormAngularJS

2009-09-25 15:34:42

Hibernate关联

2009-06-04 10:34:19

Hibernate一对一对多关系配置

2009-06-26 16:12:59

2009-06-18 10:21:22

Spring的支持Sun GlassFi

2009-06-26 16:31:50

区分不同对象Hibernate

2009-06-12 15:25:38

Hibernate s

2009-06-30 14:11:00

Hibernate缓存

2009-06-18 13:42:48

Hibernate s
点赞
收藏

51CTO技术栈公众号