summaryrefslogtreecommitdiff
path: root/orkbasej/java/mysql.hbm.template.xml
diff options
context:
space:
mode:
authorRalph Atallah <ralphat@users.sourceforge.net>2008-11-26 21:02:28 +0000
committerRalph Atallah <ralphat@users.sourceforge.net>2008-11-26 21:02:28 +0000
commitcee90dc1c327d631829177b9c4a76a069bcb3feb (patch)
tree1e153b35e21eee84366000bef46372b4347df7e7 /orkbasej/java/mysql.hbm.template.xml
parent5768f0fa6a9f6a13183336e2587ca99e7a43936b (diff)
Combined hibernate and logging configuration files for orkweb and orktrack.
Please refer to new documentation regarding manual deployment of orkweb and orktrack. git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@571 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasej/java/mysql.hbm.template.xml')
-rw-r--r--orkbasej/java/mysql.hbm.template.xml19
1 files changed, 0 insertions, 19 deletions
diff --git a/orkbasej/java/mysql.hbm.template.xml b/orkbasej/java/mysql.hbm.template.xml
deleted file mode 100644
index 3806981..0000000
--- a/orkbasej/java/mysql.hbm.template.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!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="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
- <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
- <property name="hibernate.connection.url">jdbc:mysql://localhost/test</property>
- <property name="hibernate.connection.password">password</property>
- <property name="hibernate.connection.username">root</property>
-
- <property name="hibernate.hbm2ddl.auto">update</property> <!-- update, create, create-drop -->
- <property name="hibernate.show_sql">false</property>
-
- <property name="hibernate.max_fetch_depth">1</property>
- <property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
- </session-factory>
-</hibernate-configuration>