/sigmah/src/test/resources/hibernate-tests-mssql.cfg.xml
XML | 20 lines | 15 code | 1 blank | 4 comment | 0 complexity | 06c525649a9f7ad8540c77ffca63420d MD5 | raw file
1<!-- 2 ~ All Sigmah code is released under the GNU General Public License v3 3 ~ See COPYRIGHT.txt and LICENSE.txt. 4 --> 5 6<!DOCTYPE hibernate-configuration PUBLIC 7 "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 8 "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> 9<hibernate-configuration> 10 <session-factory> 11 <property name="dialect">org.hibernate.dialect.SQLServerDialect</property> 12 <property name="connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property> 13 <property name="connection.username">sa</property> 14 <property name="connection.password">adminpwd</property> 15 <property name="connection.url">jdbc:jtds:sqlserver://localhost:1433/act-test</property> 16 <property name="show_sql">true</property> 17 <property name="hbm2ddl.auto">create-drop</property> 18 <property name="format_sql">true</property> 19 </session-factory> 20</hibernate-configuration>