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