GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / test / commons / org / codehaus / groovy / grails / plugins / grails-app / conf / PooledApplicationDataSource.groovy
blobdacf0b18283d7229b65c45f164e53997eddb88ad
1 class PooledApplicationDataSource {
2 boolean pooling = true
3 String dbCreate = "create-drop" // one of 'create', 'create-drop','update'
4 String url = "jdbc:hsqldb:mem:testDB"
5 String driverClassName = "org.hsqldb.jdbcDriver"
6 String username = "sa"
7 String password = ""