Performs a stored procedure call. Example usage (tested with MySQL) - suppose we have the following stored procedure: sql.execute """ CREATE PROCEDURE HouseSwap(_first1 VARCHAR(50), _first2 VARCHAR(50)) BEGIN DECLARE _loc1 INT; DECLARE _loc2 INT; SELECT loca
(String sql)
| 3450 | * @throws SQLException if a database access error occurs |
| 3451 | */ |
| 3452 | public int call(String sql) throws SQLException { |
| 3453 | return call(sql, EMPTY_LIST); |
| 3454 | } |
| 3455 | |
| 3456 | /** |
| 3457 | * Performs a stored procedure call with the given embedded parameters. |
nothing calls this directly
no test coverage detected