7. OpenSQL Features : Error Handling : Handling Deadlock
 
Share this page                  
Handling Deadlock
Deadlock occurs when two transactions are each waiting for the other to release a part of the database to enable it to complete its update. Transactions that handle deadlocks in conjunction with other errors can be difficult to code and test, especially if cursors are involved.
To facilitate the proper coding and testing for these situations, you can use the following three template programs as guides in your resolution of similar error situations. Deadlock conditions are identified by the generic error code value of E_GEC2EC_SERIALIZATION.
The following templates assume the default OpenSQL transaction behavior (SET AUTOCOMMIT is OFF).