I am running two instances of a program and they are both accessing a TAds table.

I want to reproduce a table lock for testing, but am having trouble.

I made a button that when clicked runs the code -

SomeTAdsTable.Edit;

When I click on the button on both instances of the program I am not getting any Advantage Table errors.

I am assuming it would be trying to edit the same record on both instances of the program.

Can anyone help me reproduce a table lock error with advantage?

Thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

If the TAdsTable instances reference the same table, are are both positioned to the same record number and the record locking mode is set to lmPessimistic, then the second edit should result in a lock error.

However, the LockTable method might be applicable in this situation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.