Thanks for the effort, I was actually planning to give up for today. I hope you don't mind that I only paste the top of the file since the rest has been untouched.
| <?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> | | <!-- hibernate dialect --> | <property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property> | | <!-- JDBC connection properties (begin) === | <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> | <property name="hibernate.connection.url">jdbc:mysql://127.0.0.1:3306/jbpm32</property> | <property name="hibernate.connection.username">jbossjbpm</property> | <property name="hibernate.connection.password">jbossjbpm</property> | ==== JDBC connection properties (end) --> | | <property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property> | | <!-- JTA transaction properties (begin) === | <property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property> | <property name="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.JBossTransactionManagerLookup</property> | ==== JTA transaction properties (end) --> | | <!-- CMT transaction properties (begin) === | <property name="hibernate.transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</property> | <property name="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.JBossTransactionManagerLookup</property> | ==== CMT transaction properties (end) --> | | <!-- logging properties (begin) === | <property name="hibernate.show_sql">true</property> | <property name="hibernate.format_sql">true</property> | <property name="hibernate.use_sql_comments">true</property> | ==== logging properties (end) --> | ... | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4044346#4044346 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4044346 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
