Below code snippet shows you to get the JDBC connection in java. To get the JDBC connection you will need JDBC Driver Jar for HSQLDB.
[java]
/****************************************************************************************
* Created on 04-2011 Copyright(c) https://kodehelp.com All Rights Reserved.
****************************************************************************************/
package com.kodehelp.javasql;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
/**
* Created by https://kodehelp.com
* Date: 4/29/11
*/
public class GetHSQLConnection{
public static void main(String [] args) throws SQLException, ClassNotFoundException {
Class.forName("org.hsqldb.jdbcDriver");
System.out.println("Driver Loaded.");
final String URL = "jdbc:hsqldb:data/tutorial";
Connection conn = DriverManager.getConnection(URL, "SA", "");
}
}
[/java]