<?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 BSAccount
   - 
   - BSAccount - The BuckoSoft Account Manager
   - Copyright(c) 2015 - 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/bsaccount</property>
		<property name="hibernate.connection.username">BSAccount</property>
		<property name="hibernate.connection.password">bsAccount_xxx</property>
		 -->
		<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/bsaccount_dev</property>
		<property name="hibernate.connection.username">BSAccountDev</property>
		<property name="hibernate.connection.password">BSAccountDevXXX</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/Account.hbm.xml" />

	</session-factory>

</hibernate-configuration>
