ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2025

Category: WLanguage functions
10 results
HSetTransaction (Function)
Enables or disables the management of transactions for one or more files.
HTransaction (Function)
Starts a transaction on the tables (HFSQL or accessed via a Native Connector) and creates the transaction table.
HTransactionCancel (Function)
If a transaction is in progress, rolls back all operations performed on tables in transactions since the start of the transaction.
HTransactionEnd (Function)
Validates the current transaction:
  • the modifications performed on the table since the start of transaction (HTransactionStart) are validated.
  • the transaction file is deleted (if the transaction is the last transaction in progress for a network application)
  • the records locked in read-only by the transaction are unlocked.
HTransactionFree (Function)
Transforms all "in transaction" records into "normal" records if they do not belong to a transaction currently in progress.
HTransactionInProgress (Function)
Used to find out whether a transaction is in progress.
HTransactionInterrupted (Function)
Used to find out whether a transaction was interrupted (the transaction was neither validated nor canceled).
HTransactionIsolation (Function)
Configures the isolation level of transactions for a connection to an HFSQL server.
HTransactionList (Function)
Returns the list of current or interrupted transactions on the server for the specified connection.
HTransactionStart (Function)
Starts a transaction on the tables (HFSQL or accessed via a Native Connector) and creates the transaction table.