Indicates whether a database transaction is in progress or not. Syntax: property InTransaction: Boolean; Description: Examine InTransaction at run-time to determine if a database transaction is currently in progress. InTransaction is True if a transaction is in progress, False otherwise. The value of InTransaction cannot be changed directly. Calling StartTransaction sets InTransaction to True. Calling Commit or Rollback sets InTransaction to False.
See also: StartTransaction, Commit, Rollback methods |