Programmer Guide : solidDB® SA : solidDB® SA function reference : SaTransBegin
  
SaTransBegin
SaTransBegin starts a new transaction. After this call, all select, insert, update and delete operations are executed in the same transaction, and the changes are not visible in the database until SaTransCommit is called.
Without the SaTransBegin call, the server is in autocommit mode by default and therefore each select, insert, update, and delete operation is executed in a separate transaction. No explicit commit (SaTransCommit) is required when in autocommit mode.
The transaction is run in a mode where write operations are validated for lost updates and unique errors.
Synopsis
void SA_EXPORT_H SaTransBegin(SaConnectT* scon)
Parameters
Parameters
Usage type
Description
scon
in, use
Pointer to a connection object.
Return value
None.
See also
solidDB® SA function reference