1 6 package org.logicalcobwebs.dbscript; 7 8 import org.logicalcobwebs.proxool.ProxoolException; 9 10 import java.util.Properties ; 11 import java.sql.SQLException ; 12 import java.sql.Connection ; 13 14 24 public interface ConnectionAdapterIF { 25 26 35 void setup(String driver, String url, Properties info) throws SQLException , ProxoolException; 36 37 42 Connection getConnection() 43 throws SQLException ; 44 45 51 void closeConnection(Connection connection) throws SQLException ; 52 53 57 void tearDown() throws ProxoolException; 58 59 63 String getName(); 64 65 } 66 67 98 | Popular Tags |