001 package railo.commons.sql; 002 003 import java.sql.Connection; 004 import java.sql.SQLException; 005 import java.util.Properties; 006 007 import org.hsqldb.jdbcDriver; 008 009 public final class HDSQLDriver extends jdbcDriver { 010 011 @Override 012 public Connection connect(String arg0, Properties arg1) throws SQLException { 013 014 015 return super.connect(arg0, arg1); 016 } 017 018 019 020 /// <cfset this.dsn="jdbc:hsqldb:file:{path}{database}"> 021 }