столкнулся с такой же проблемой... следующий вариант мне помог
Table1 table1;
Table1 table1update;
...
ttsbegin;
for (loop = _recSortedList.first(table1); loop; loop = _recSortedList.next(table1))
{
table1update.selectForUpdate(true);
table1update.data(table1);
table1update.FieldCheckBox = NoYes::Yes;
table1update.update();
}
ttscommit;
|