|
|
#1 |
|
Участник
|
RecordSortedList forUpdate
Как-то можно присобачить RecordSortedList, чтобы хранить записи, с возможностью их последующего обновления?
делаю вот-так: Код: ttsbegin;
loop = _recSortedList.first(table1);
while (loop)
{
table1.selectForUpdate(true);
table1.FieldCheckBox = NoYes::Yes;
table1.update();
loop = _recSortedList.next(table1);
}
ttscommit;Как сие починить? |
|
|