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 /** 012 * @see org.hsqldb.jdbcDriver#connect(java.lang.String, java.util.Properties) 013 */ 014 public Connection connect(String arg0, Properties arg1) throws SQLException { 015 016 017 return super.connect(arg0, arg1); 018 } 019 020 021 022 /// <cfset this.dsn="jdbc:hsqldb:file:{path}{database}"> 023 }