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