source: trunk/grails-app/conf/DataSource.groovy @ 1430

Last change on this file since 1430 was 1430, checked in by work@…, 12 years ago
  • set keyword expansion
  • Property svn:keywords set to Rev Author Date
File size: 549 bytes
Line 
1/**
2 * Default datasource configuration
3 *
4 * See environment specific configuration!
5 *
6 * @author Jeroen Wesbeek
7 * @since 20110110
8 *
9 * Revision information:
10 * $Rev: 1430 $
11 * $Author: work@osx.eu $
12 * $Date: 2011-01-21 20:05:36 +0000 (vr, 21 jan 2011) $
13 */
14dataSource {
15        pooled = true
16        driverClassName = "org.hsqldb.jdbcDriver"
17        dbCreate = "create-drop" // one of 'create', 'create-drop','update'
18        url = "jdbc:hsqldb:mem:devDB"
19        username = "sa"
20        password = ""
21}
22hibernate {
23        cache.use_second_level_cache = true
24        cache.use_query_cache = true
25        cache.provider_class = 'net.sf.ehcache.hibernate.EhCacheProvider'
26}
Note: See TracBrowser for help on using the repository browser.