165166167168169170171172
} tableModel.addRow(dataRow); } catch (KettleValueException kve) { throw new KettleStepException(kve); } }
191192193194195196197198
*/ public void errorRowWrittenEvent(final RowMetaInterface rowMeta, final Object[] row) throws KettleStepException { if (stopOnError) { throw new KettleStepException("Aborting transformation due to error detected"); } }
110111112113114115116117118119120121
} tableModel.addRow(dataRow); } catch (final KettleValueException kve) { throw new KettleStepException(kve); } catch (final Exception e) { throw new KettleStepException(e); } }
184185186187188189190191192
*/ public void errorRowWrittenEvent(final RowMetaInterface rowMeta, final Object[] row) throws KettleStepException { if (stopOnError) { throw new KettleStepException("Aborting transformation due to error detected"); } error = true; }
12831284128512861287128812891290
pentahoRow[columnNo] = rowMeta.getString( row, columnNo ); } } memResults.addRow( pentahoRow ); } catch ( KettleValueException e ) { throw new KettleStepException( e ); } }