Generated by
JDiff

Interface java.sql.Connection

Documentation changed from old to new.

Changed Methods
Map getTypeMap() Documentation changed from old to new.
Gets the type map object associated with this connection.
void setTypeMap(Map) Documentation changed from old to new.
Installs the given type map as the type map for this connection.
Statement createStatement() Documentation changed from old to new.
Creates a Statement object for sending SQL statements to the database.
Statement createStatement(int, int) Documentation changed from old to new.
Creates a Statement object that will generate ResultSet objects with the given type and concurrency.
CallableStatement prepareCall(String) Documentation changed from old to new.
Creates a CallableStatement object for calling database stored procedures.
CallableStatement prepareCall(String, int, int) Documentation changed from old to new.
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
PreparedStatement prepareStatement(String) Documentation changed from old to new.
Creates a PreparedStatement object for sending parameterized SQL statements to the database.
PreparedStatement prepareStatement(String, int, int) Documentation changed from old to new.
Creates a PreparedStatement object that will generate ResultSet objects with the given type and concurrency.