2013年02月24日

Hibernate 不同数据库的连接及SQL方言


  org.hibernate.dialect.MySQLDialect
  com.mysql.jdbc.Driver

  
  jdbc:mysql://localhost/dbname?characterEncoding=gb2312

  
  root

  
  root
  
  
  
  org.hibernate.dialect.SQLServerDialect
  net.sourceforge.jtds.jdbc.Driver

  
  jdbc:jtds:sqlserver://localhost:1433;DatabaseName=dbname

  
  sa

  
  

  
  
  
  org.hibernate.dialect.OracleDialect
  oracle.jdbc.driver.OracleDriver

  
  jdbc:oracle:thin:@localhost:1521:dbname

  
  test

  
  test

版权声明:本文为博主原创文章,未经博主允许不得转载。

原文地址:https://www.cnblogs.com/jamesf/p/4751687.html