Merged gcj-eclipse branch to trunk.
From-SVN: r120621
This commit is contained in:
@@ -339,7 +339,7 @@ public interface Connection
|
||||
* @return The SQL type to Java class mapping.
|
||||
* @exception SQLException If an error occurs.
|
||||
*/
|
||||
Map getTypeMap() throws SQLException;
|
||||
Map<String, Class<?>> getTypeMap() throws SQLException;
|
||||
|
||||
/**
|
||||
* This method sets the mapping table for SQL types to Java classes.
|
||||
@@ -348,7 +348,7 @@ public interface Connection
|
||||
* @param map The new SQL mapping table.
|
||||
* @exception SQLException If an error occurs.
|
||||
*/
|
||||
void setTypeMap(Map map) throws SQLException;
|
||||
void setTypeMap(Map<String, Class<?>> map) throws SQLException;
|
||||
|
||||
/**
|
||||
* Sets the default holdability of <code>ResultSet</code>S that are created
|
||||
|
||||
Reference in New Issue
Block a user