java

位置:IT落伍者 >> java >> 浏览文章

Hibernate对各数据库的连接方言


发布日期:2019年02月05日
 
Hibernate对各数据库的连接方言

<sessionfactory>

<property name=connectiondriver_class>netsourceforgejtdsjdbcDriver</property>

<property name=connectionurl>jdbc:jtds:sqlserver://ALEX:/News</property>

<!for oracle

<property name=dialect>orghibernatedialectOracleDialect</property>

>

<!for Mysql

<property name=dialect>orghibernatedialectMySQLDialect</property>

>

<!for Ms SQL Server>

<property name=dialect>orghibernatedialectSQLServerDialect</property>

<property name=connectionusername>sa</property>

<property name=connectionpassword>sa</property>

<property name=show_sql>true</property>

</sessionfactory>

RDBMS 方言

DB orghibernatedialectDBDialect

DB AS/ orghibernatedialectDBDialect

DB OS orghibernatedialectDBDialect

PostgreSQL orghibernatedialectPostgreSQLDialect

MySQL orghibernatedialectMySQLDialect

MySQL with InnoDB orghibernatedialectMySQLInnoDBDialect

MySQL with MyISAM orghibernatedialectMySQLMyISAMDialect

Oracle (any version) orghibernatedialectOracleDialect

Oracle i/g orghibernatedialectOracleDialect

Sybase orghibernatedialectSybaseDialect

Sybase Anywhere orghibernatedialectSybaseAnywhereDialect

Microsoft SQL Server orghibernatedialectSQLServerDialect

SAP DB orghibernatedialectSAPDBDialect

Informix orghibernatedialectInformixDialect

HypersonicSQL orghibernatedialectHSQLDialect

Ingres orghibernatedialectIngresDialect

Progress orghibernatedialectProgressDialect

Mckoi SQL orghibernatedialectMckoiDialect

Interbase orghibernatedialectInterbaseDialect

Pointbase orghibernatedialectPointbaseDialect

FrontBase orghibernatedialectFrontbaseDialect

Firebird orghibernatedialectFirebirdDialect

上一篇:用Ant和Eclipse有效地提高部署效率

下一篇:Nhibernate与代码生成器介绍