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 / NonPooledApplicationDataSource.groovy
blob622efc741e1e11ff4e6fce6bf79a5a0942a36adf
1 class NonPooledApplicationDataSource {
2 boolean pooling = false
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 = ""