x++ コンパイルで、update statment行に「Set-based operation must invoke Skip statements in method xxx in class XXXX; otherwise, execution will fall back to a row by row operation.」

Set-based operation must invoke Skip statements in method fileExportProc in class TikProdAstProdOrderFileCreate; otherwise, execution will fall back to a row by row operation.

上記のワーニングが発生した場合、update statment行の直前に、「skipDataMethods(true)」を呼出したら、ワーニングが解消できます。

Table tableA;

tableA.skipDataMethods(true);

update_recordset tableA where tableA... == ...;