/grails-app/conf/DataSource.groovy
http://github.com/neodevelop/codice · Groovy · 32 lines · 31 code · 0 blank · 1 comment · 0 complexity · 60208cf25f85bf5d057023d68311c19a MD5 · raw file
- dataSource {
- pooled = true
- driverClassName = "org.hsqldb.jdbcDriver"
- username = "sa"
- password = ""
- }
- hibernate {
- cache.use_second_level_cache = true
- cache.use_query_cache = true
- cache.provider_class = 'net.sf.ehcache.hibernate.EhCacheProvider'
- }
- // environment specific settings
- environments {
- development {
- dataSource {
- dbCreate = "create-drop" // one of 'create', 'create-drop','update'
- url = "jdbc:hsqldb:mem:devDB"
- }
- }
- test {
- dataSource {
- dbCreate = "update"
- url = "jdbc:hsqldb:mem:testDb"
- }
- }
- production {
- dataSource {
- dbCreate = "update"
- url = "jdbc:hsqldb:file:prodDb;shutdown=true"
- }
- }
- }