|
Groovy example source code file (SqlCompleteWithoutDataSourceTest.groovy)
The Groovy SqlCompleteWithoutDataSourceTest.groovy source code
package groovy.sql
import java.sql.DriverManager
import org.hsqldb.jdbcDriver
/**
* Tests the use of the Sql class using just a Connection
* rather than a DataSource
*/
class SqlCompleteWithoutDataSourceTest extends SqlCompleteTest {
protected def newSql(String uri) {
def driver = jdbcDriver
println("Loading driver ${driver}")
return new Sql(DriverManager.getConnection(uri))
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy SqlCompleteWithoutDataSourceTest.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.