public Ref getRef(String parameterName) throws SQLException { checkOpen(); try { return _stmt.getRef(parameterName); } catch (SQLException e) { handleException(e); return null; } }
public Ref getRef(int i) throws SQLException { checkOpen(); try { return _stmt.getRef(i); } catch (SQLException e) { handleException(e); return null; } }
/** The ref value */ @Override public Ref getRef(String name) throws SQLException { try { return _cstmt.getRef(name); } catch (SQLException e) { onSqlException(e); throw e; } catch (RuntimeException e) { onRuntimeException(e); throw e; } }
/** @see java.sql.CallableStatement#getRef(java.lang.String) */ public Ref getRef(String parameterName) throws SQLException { return original.getRef(parameterName); }
/** @see java.sql.CallableStatement#getRef(int) */ public Ref getRef(int i) throws SQLException { return original.getRef(i); }
public Ref getRef(String parameterName) throws SQLException { return passThru.getRef(parameterName); }
public Ref getRef(int i) throws SQLException { return passThru.getRef(i); }