List of utility methods to do SQL Callable Statement
| String | getStringCallableStatement(CallableStatement cs, int intField) get String Callable Statement String strValueReturn = cs.getString(intField); if (strValueReturn == null) strValueReturn = ""; return strValueReturn; |
| void | safeCallableStatementClose(CallableStatement call) Cierra de manera segura un CallableStatement , haciendo primero validacion de nulabilidad. if (call != null) {
call.close();
|