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

<!-- Hibernate configuration file for BuckoVidLib
   - $Id: BuckoVidLib-hibernate.cfg.xml,v 1.11 2015/05/03 17:51:36 dick Exp $
   -
   - BuckoVidLib - The BuckoSoft Video Library
   - Copyright(c) 2014 - Dick Balaska
   -
   -->

<hibernate-configuration>

	<session-factory>

		<!-- Database connection settings -->
		<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
		<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/buckovidlib</property>
		<property name="hibernate.connection.username">BuckoVidLib</property>
		<property name="hibernate.connection.password">BuckoVidXXX</property>

		<!-- JDBC connection pool (use the built-in) -->
		<property name="connection.pool_size">1</property>

		<!-- SQL dialect -->
		<property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>

		<!-- Enable Hibernate's automatic session context management -->
		<property name="current_session_context_class">thread</property>

		<!-- Disable the second-level cache  -->
		<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

		<!-- Echo all executed SQL to stdout -->
		<property name="show_sql">false</property>

		<!-- Drop and re-create the database schema on startup -->
		<!-- <property name="hbm2ddl.auto">create</property> -->

		<mapping resource="hibernate/Actor.hbm.xml" />
		<mapping resource="hibernate/Director.hbm.xml" />
		<mapping resource="hibernate/FailedToRip.hbm.xml" />
		<mapping resource="hibernate/Genre.hbm.xml" />
		<mapping resource="hibernate/LibrarySection.hbm.xml" />
		<mapping resource="hibernate/Role.hbm.xml" />
		<mapping resource="hibernate/Video.hbm.xml" />
		<mapping resource="hibernate/UserAttribute.hbm.xml" />
		<mapping resource="hibernate/Video_Actor.hbm.xml" />
		<mapping resource="hibernate/Video_Director.hbm.xml" />
		<mapping resource="hibernate/Video_Genre.hbm.xml" />
		<mapping resource="hibernate/Video_Writer.hbm.xml" />
		<mapping resource="hibernate/WishList.hbm.xml" />
		<mapping resource="hibernate/Writer.hbm.xml" />

	</session-factory>

</hibernate-configuration>
