More Javadoc fixes.
This commit is contained in:
parent
122b14c8f4
commit
ed19117078
3 changed files with 22 additions and 27 deletions
|
@ -276,7 +276,8 @@ public class SimplePoolConnection implements Connection {
|
|||
/**
|
||||
* See {@link java.sql.Connection#prepareCall(String, int, int, int)}.
|
||||
*/
|
||||
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
|
||||
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency,
|
||||
int resultSetHoldability)
|
||||
throws SQLException {
|
||||
return conn.prepareCall(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
|
||||
}
|
||||
|
@ -308,7 +309,8 @@ public class SimplePoolConnection implements Connection {
|
|||
/**
|
||||
* See {@link java.sql.Connection#prepareStatement(String, int, int, int)}.
|
||||
*/
|
||||
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
|
||||
public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency,
|
||||
int resultSetHoldability)
|
||||
throws SQLException {
|
||||
return conn.prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue