Hi, Folks,
My client wants to Chnage MSSQL server to Oracle 10g.
I am using jtds JDBC driver. Currently hibernate configure is like this:
Code:
<property name="connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
<property name="connection.url">jdbc:jtds:sqlserver://192.168.100.97:1433/sumacmt</property>
<property name="connection.username">sa</property>
<property name="connection.password">sa</property>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="show_sql">true</property>
I am not sure how change to the 2 parts: jdbc:jtds:sqlserver and rg.hibernate.dialect.SQLServerDialect
Code:
<property name="connection.url">jdbc:jtds:sqlserver://192.168.100.97:1433/sumacmt</property>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="show_sql">true</property>
Does some one can tell me?
Thank you!
Chwang