Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

TStart

Marks the beginning of a transaction.

Synopsis

TStart

Arguments

The TStart statement does not have any arguments.

Description

TStart marks the beginning of a transaction. Following TStart, database operations are journaled to enable a subsequent TCommit or TRollback statement.

Any locks issued within a transaction will be held until the end of the transaction even if the lock is released.

Examples

The following example illustrates the use of the TStart statement:

TStart
If StorePerson(personobject) Then
 TCommit
Else
 TRollback
End If

See Also

FeedbackOpens in a new tab