-
Methods in java.sql that return CallableStatement
| Modifier and Type |
Method |
Description |
CallableStatement |
Connection.prepareCall(String sql) |
Returns a new instance of CallableStatement that may be used for
making stored procedure calls to the database.
|
CallableStatement |
Connection.prepareCall(String sql,
int resultSetType,
int resultSetConcurrency) |
Returns a new instance of CallableStatement that may be used for
making stored procedure calls to the database.
|
CallableStatement |
Connection.prepareCall(String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
Returns a new instance of CallableStatement that may be used for
making stored procedure calls to the database.
|
-