www.element4solution.com

e4s.db
Interface AEP_JDBC_Connection_Intf


public interface AEP_JDBC_Connection_Intf


Method Summary
 void createdConnection(java.sql.Connection con)
          This function is involved when an connection is created.
 void getConnection(java.sql.Connection con)
          This function is involved every time the application requests an connection.
 void newClassInstance(java.lang.Object obj)
          This function is involved after a class for the JDBC driver was instanciated.
 

Method Detail

newClassInstance

void newClassInstance(java.lang.Object obj)
This function is involved after a class for the JDBC driver was instanciated.

Parameters:
obj - the object created for the JDBC driver, e.g. Object obj = Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
See Also:
#bevoreNewClassInstance()

getConnection

void getConnection(java.sql.Connection con)
This function is involved every time the application requests an connection.

Parameters:
con - the connection
See Also:
createdConnection(java.sql.Connection)

createdConnection

void createdConnection(java.sql.Connection con)
This function is involved when an connection is created.

Parameters:
con - the new created connection
See Also:
getConnection(java.sql.Connection)

www.element4solution.com