Here you can find the source of getDbConnection()
public static Connection getDbConnection() throws SQLException
//package com.java2s; //License from project: Apache License import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class Main { public static Connection getDbConnection() throws SQLException { Connection rc = DriverManager.getConnection("jdbc:hsqldb:mem:testDb", "sa", ""); return rc; }/*from w w w.ja va 2 s . c om*/ }