Index: lams_tool_forum/hsql-hibernate.properties =================================================================== diff -u --- lams_tool_forum/hsql-hibernate.properties (revision 0) +++ lams_tool_forum/hsql-hibernate.properties (revision 9bdcb4838d0746043a760b0967a29572788d6dd5) @@ -0,0 +1,8 @@ +hibernate.dialect = net.sf.hibernate.dialect.HSQLDialect +hibernate.connection.driver_class = org.hsqldb.jdbcDriver +hibernate.connection.url = jdbc:hsqldb:. +hibernate.connection.username = sa +hibernate.connection.password = +hibernate.connection.pool_size = 20 +hibernate.statement_cache.size = 6 +hibernate.show_sql = false Index: lams_tool_forum/mysql-hibernate.properties =================================================================== diff -u --- lams_tool_forum/mysql-hibernate.properties (revision 0) +++ lams_tool_forum/mysql-hibernate.properties (revision 9bdcb4838d0746043a760b0967a29572788d6dd5) @@ -0,0 +1,8 @@ +hibernate.dialect = net.sf.hibernate.dialect.MySQLDialect +hibernate.connection.driver_class = com.mysql.jdbc.Driver +hibernate.connection.url = jdbc:mysql://localhost/forum +hibernate.connection.username = root +hibernate.connection.password = root +hibernate.connection.pool_size = 20 +hibernate.statement_cache.size = 6 +hibernate.show_sql = false