<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration
    PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
    "hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory >

		<!-- local connection properties -->
		<property name="hibernate.connection.url">jdbc:hsqldb:hsql://localhost/xdb</property>
		<property name="hibernate.connection.driver_class">org.hsqldb.jdbcDriver</property>
		<property name="hibernate.connection.username">sa</property>
		<property name="hibernate.connection.password"></property>
		<!-- property name="hibernate.connection.pool_size"></property -->

		<!-- dialect for HypersonicSQL -->
        <property name="dialect">org.hibernate.dialect.HSQLDialect</property>

        <property name="hibernate.show_sql">false</property>
        <property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
    	
    	<mapping resource="cat/model/Cat.hbm.xml"/>
    	<mapping resource="cat/model/Owner.hbm.xml"/>
    	<mapping resource="cat/model/SmallAnimal.hbm.xml"/>
    	
    </session-factory>
</hibernate-configuration>