public void setRowId(String parameterName, RowId value) throws SQLException {
   checkOpen();
   try {
     ((CallableStatement) _stmt).setRowId(parameterName, value);
   } catch (SQLException e) {
     handleException(e);
   }
 }
Example #2
0
  @Override
  public void setRowId(String parameterName, RowId x) throws SQLException {
    try {
      _cstmt.setRowId(parameterName, x);
    } catch (SQLException e) {
      onSqlException(e);

      throw e;
    } catch (RuntimeException e) {
      onRuntimeException(e);

      throw e;
    }
  }
 public void setRowId(String parameterName, RowId x) throws SQLException {
   passThru.setRowId(parameterName, x);
 }