Data Integration
- Data Integration
- 所有产品
incrementErrorCount(int nErrors);
引数
| データ型
| 入出力
| 説明
|
---|---|---|---|
nErrors
| Integer
| 入力
| セッションのエラーカウントとして増やすエラーの数。
|
// Check whether input employee ID or name is null. if (isNull ("EMP_ID_INP") || isNull ("EMP_NAME_INP")) { incrementErrorCount(1); // If input employee ID or name is null, don't generate an output row for this input row. generateRow = false; }