Skip to main content

Database Integrity

Basic provides functions and commands to help ensure database integrity: Lock() and Unlock() function, and TStart, and TCommit commands. We'll cover these in preparation for adding editing capabilities to the myBASlookup routine. These commands usually appear near each other. In general, you should use them in this way:

  1. Select a record for editing.

  2. Lock() the record.

  3. Get the updated data for the record.

  4. TStart a transaction.

  5. Store the new data.

  6. TCommit the transaction.

  7. Unlock() the record.

You use the Lock() command to prevent multiple processes from updating the same record at the same time. But it only works by convention: all the code throughout an application that updates a given global must try to Lock() the record that is to be updated, and Unlock() it when finished. If one routine uses Lock(), but another doesn't, nothing prevents the second routine from updating the record while the first routine has it locked.

You use the TStart and TCommit commands to protect database transactions. A transaction is simply a series of changes (insert, update, delete) to the database. You need to ensure that an entire transaction completes, or that none of it completes. This guarantees that all the globals in a transaction (for both data and indices, for example) remain in sync.

FeedbackOpens in a new tab