C
cverbiest
Guest
def buffer alt-record for record. /* for each no-lock */ for each record no-lock: /* lock the record without waiting using an alternate buffer */ find alt-record where rowid(alt-record) = rowid(record) excluisve-lock no-wait no-error. if locked alt-record then do: /* report error */ next. end. end.
Continue reading...
Continue reading...