can anyone explain to me, why tjava components (escpecially tjava, tjavarow) don´t have to use in a flow and should predominant used in subjobs? what are the disadvantages? thx in advance
Hi You can use tJavaRow in a data flow and you are able to access the column value, for example: tMysqlInput--main--tJavaRow--LogRow on tJavaRow: output_row.id=input_row.id; output_row.name=input_row.name.toUpperCase();
Hi
tJava is used to execute the a piece of Java code, normally, it is used alone as a subjob, because you can't access the column value on tJava component. However, tJavaRow is normally used in a data flow and you are able to access column value.
Shong