Java Utililty Methods SQL Callable Statement

List of utility methods to do SQL Callable Statement

Description

The list of methods to do SQL Callable Statement are organized into topic(s).

Method

StringgetStringCallableStatement(CallableStatement cs, int intField)
get String Callable Statement
String strValueReturn = cs.getString(intField);
if (strValueReturn == null)
    strValueReturn = "";
return strValueReturn;
voidsafeCallableStatementClose(CallableStatement call)
Cierra de manera segura un CallableStatement , haciendo primero validacion de nulabilidad.
if (call != null) {
    call.close();