gstarwd 发表于 2013-1-30 00:19:25

Hibernate的dialect大全

RDBMS                        方言                  DB2org.hibernate.dialect.DB2DialectDB2 AS/400org.hibernate.dialect.DB2400DialectDB2 OS390org.hibernate.dialect.DB2390DialectPostgreSQLorg.hibernate.dialect.PostgreSQLDialectMySQLorg.hibernate.dialect.MySQLDialectMySQL with InnoDBorg.hibernate.dialect.MySQLInnoDBDialectMySQL with MyISAMorg.hibernate.dialect.MySQLMyISAMDialectOracle (any version)org.hibernate.dialect.OracleDialectOracle 9i/10gorg.hibernate.dialect.Oracle9DialectSybaseorg.hibernate.dialect.SybaseDialectSybase Anywhereorg.hibernate.dialect.SybaseAnywhereDialectMicrosoft SQL Serverorg.hibernate.dialect.SQLServerDialectSAP DBorg.hibernate.dialect.SAPDBDialectInformixorg.hibernate.dialect.InformixDialectHypersonicSQLorg.hibernate.dialect.HSQLDialectIngresorg.hibernate.dialect.IngresDialectProgressorg.hibernate.dialect.ProgressDialectMckoi SQLorg.hibernate.dialect.MckoiDialectInterbaseorg.hibernate.dialect.InterbaseDialectPointbaseorg.hibernate.dialect.PointbaseDialectFrontBaseorg.hibernate.dialect.FrontbaseDialectFirebirdorg.hibernate.dialect.FirebirdDialect
 
 
 
Access数据库的方言包:http://www.hxtt.com/test/hibernate.zip路径:com.hxtt.support.hibernate.HxttAccessDialect例子:          <property name="hibernate.connection.username" value="sa"/>      <property name="hibernate.connection.password" value="sa"/>      <property name="hibernate.connection.url" value="jdbc:sqlserver://localhost:1433;databaseName=test"/>      <property name="hibernate.connection.driver_class" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>      <property name="hibernate.cache.provider_class" value="org.hibernate.cache.NoCacheProvider"/>      <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/><property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>如果是Toplink则添加:         <property name="toplink.jdbc.user" value="sa"/>      <property name="toplink.jdbc.password" value="sa"/>      <property name="toplink.jdbc.url" value="jdbc:mysql://localhost:3306/test"/>      <property name="toplink.jdbc.driver" value="com.mysql.jdbc.Driver"/>      <property name="toplink.plafrom.class.name" value="oracle.toplink.essentials.platform.database.HSQLPlatform" />
页: [1]
查看完整版本: Hibernate的dialect大全