`
jianghe_03
  • 浏览: 105350 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

hibernate数据库连接

阅读更多
sql server 2000
......
<property name="myeclipse.connection.profile">sql 2000</property>
<property name="connection.url">
        jdbc:microsoft:sqlserver://127.0.0.1:1433
</property>
<property name="connection.username">username</property>
<property name="connection.password">******</property>
<property name="connection.driver_class">
        com.microsoft.jdbc.sqlserver.SQLServerDriver
</property>
<property name="dialect">
        org.hibernate.dialect.SQLServerDialect
</property>

mysql
......
<property name="myeclipse.connection.profile">Mysql</property>
<property name="connection.url">jdbc:mysql://localhost:3306/test</property>
<property name="connection.username">root</property>
<property name="connection.password">******</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
......
jtds driver
......
<property name="myeclipse.connection.profile">jtds driver</property>
<property name="connection.url">
      jdbc:jtds:sqlserver://localhost:1433/test;tds=8.0;lastupdatecount=true
</property>
<property name="connection.username">username</property>
<property name="connection.password">******</property>
<property name="connection.driver_class">
      net.sourceforge.jtds.jdbc.Driver
</property>
<property name="dialect">org.hibernate.dialect.SybaseDialect</property>

Oracle
......
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:kewb</property>
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="myeclipse.connection.profile">oracle</property>
<property name="connection.username">username</property>
<property name="connection.password">******</property>
<property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>
......
分享到:
评论
2 楼 jianghe_03 2009-01-15  
dianziermu 写道

楼主,你的&lt;property name="myeclipse.connection.profile"&gt;Mysql&lt;/property&gt; 作用是什么

你在用DB browsing是需要设置一个名字连接,名字可以随便起!
1 楼 dianziermu 2009-01-13  
楼主,你的<property name="myeclipse.connection.profile">Mysql</property> 作用是什么
发表评论

文章已被作者锁定,不允许评论。

相关推荐

Global site tag (gtag.js) - Google Analytics