Показать сообщение отдельно
Старый 08.05.2008, 18:52   #11  
Stitch_MS is offline
Stitch_MS
Участник
Аватар для Stitch_MS
Соотечественники
 
397 / 483 (17) +++++++
Регистрация: 27.02.2006
Адрес: Дания
А ежели так?
X++:
    try
    {
        do
        {
            ttsbegin;
 
            select pessimisticLock firstonly trans
                where trans.open == true;
 
            if (trans.recId != 0)
            {
                // ...
                trans.open = false;
                trans.update()
            }
 
            ttscommit;
        }
        while (trans.recId != 0)
    }
    catch (Exception::Deadlock)
    {
        retry;
    }
    catch (Exception::UpdateConflict)
    {
        retry;
    }