@Override public RowId getRowId(String parameterName) throws SQLException { try { return _cstmt.getRowId(parameterName); } catch (SQLException e) { onSqlException(e); throw e; } catch (RuntimeException e) { onRuntimeException(e); throw e; } }
public RowId getRowId(String parameterName) throws SQLException { return passThru.getRowId(parameterName); }
public RowId getRowId(int parameterIndex) throws SQLException { return passThru.getRowId(parameterIndex); }