/sigmah/src/test/resources/hibernate-tests-h2.cfg.xml
http://sigma-h.googlecode.com/ · XML · 20 lines · 15 code · 1 blank · 4 comment · 0 complexity · f6b22d7c0868806505697fa72e7f1eb2 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.H2Dialect</property>
- <property name="connection.driver_class">org.h2.Driver</property>
- <property name="connection.username">sa</property>
- <property name="connection.password"></property>
- <property name="connection.url">jdbc:h2:mem:activityinfo;IGNORECASE=TRUE</property>
- <property name="show_sql">true</property>
- <property name="hbm2ddl.auto">create</property>
- <property name="format_sql">true</property>
- </session-factory>
- </hibernate-configuration>