Package com.jdbwc.iface

java.sql implementation extensions.

See:
          Description

Interface Summary
Connection Vendor based extension.
This interface is for any extension methods we require over the standard java.sql.Connection interface to help make our driver work.

This interface and its method/s are not designed for direct public consumption.
The purpose of this interface is to expand functionality to assist the driver in doing its job internally.
Declaring any additional public methods here makes it easier to work with the actual implementation.
EG: you can easily tell whats generic to java.sql.Connection and whats an extension.
ResultSet Vendor based extension.
This interface is for any extension methods we require over the standard java.sql.ResultSet interface to help make our driver work.

This interface and its method/s are not designed for direct public consumption.
The purpose of this interface is to expand functionality to assist the driver in doing its job internally.
Declaring any additional public methods here makes it easier to work with the actual implementation.
EG: you can easily tell whats generic to java.sql.ResultSet and whats an extension.
Statement Vendor based extension.
This interface is for any extension methods we require over the standard java.sql.Statement interface to help make our driver work.

This interface and its method/s are not designed for direct public consumption.
The purpose of this interface is to expand functionality to assist the driver in doing its job internally.
Declaring any additional public methods here makes it easier to work with the actual implementation.
EG: you can easily tell whats generic to java.sql.Statement and whats an extension.
 

Package com.jdbwc.iface Description

java.sql implementation extensions. These are the standard vendor specific extension to the java.sql interfaces as specified by the JDBC specs.