From: <hib...@li...> - 2006-06-25 14:34:22
|
Author: max...@jb... Date: 2006-06-25 10:34:17 -0400 (Sun, 25 Jun 2006) New Revision: 10046 Modified: trunk/HibernateExt/tools/etc/hibernate.properties Log: Modified: trunk/HibernateExt/tools/etc/hibernate.properties =================================================================== --- trunk/HibernateExt/tools/etc/hibernate.properties 2006-06-25 14:11:54 UTC (rev 10045) +++ trunk/HibernateExt/tools/etc/hibernate.properties 2006-06-25 14:34:17 UTC (rev 10046) @@ -19,6 +19,18 @@ #hibernate.connection.password db2 +## H2 (www.h2database.com) +#hibernate.dialect org.hibernate.dialect.H2Dialect +#hibernate.connection.driver_class org.h2.Driver +#hibernate.connection.username sa +#hibernate.connection.password +#hibernate.connection.url jdbc:h2:testdb/h2test +#hibernate.connection.url jdbc:h2:mem: +#hibernate.connection.url jdbc:h2:tcp://dbserv:8084/sample; +#hibernate.connection.url jdbc:h2:ssl://secureserv:8085/sample; +#hibernate.connection.url jdbc:h2:ssl://secureserv/testdb;cipher=AES + + ## HypersonicSQL hibernate.dialect org.hibernate.dialect.HSQLDialect @@ -26,10 +38,10 @@ hibernate.connection.username sa hibernate.connection.password #hibernate.connection.url jdbc:hsqldb:hsql://localhost -hibernate.connection.url jdbc:hsqldb:test +hibernate.connection.url jdbc:hsqldb:testdb/hsqldb;shutdown=true #hibernate.connection.url jdbc:hsqldb:. +#hibernate.connection.shutdown=true - ## MySQL #hibernate.dialect org.hibernate.dialect.MySQLDialect @@ -294,8 +306,8 @@ ## specify a default schema and catalog for unqualified tablenames -#hibernate.default_schema -#hibernate.default_catalog +hibernate.default_schema PUBLIC +#hibernate.default_catalog PUBLIC ## set the maximum depth of the outer join fetch tree |