Показать сообщение отдельно
Старый 28.08.2006, 16:37   #15  
poul is offline
poul
Участник
 
16 / 11 (1) +
Регистрация: 11.08.2006
столкнулся с такой же проблемой... следующий вариант мне помог
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;