START

4D - Documentation   Français   English   German   4D SQL Reference, Table of Contents   4D SQL Reference, Index   Back   Previous   Next

version 11


START [TRANSACTION]

Description

The START command is used to set the beginning of a transaction. If this command is passed when a transaction is already underway, it has no effect. The keyword TRANSACTION is optional.

Example

This example carries out a selection within a transaction:

   START TRANSACTION
   SELECT * FROM suppliers
   WHERE supplier_name LIKE '%bob%';
   COMMIT TRANSACTION;

See Also

COMMIT, ROLLBACK.


4D - Documentation   Français   English   German   4D SQL Reference, Table of Contents   4D SQL Reference, Index   Back   Previous   Next