Functions for starting, terminating, and aborting transactions.
EplHandle eplStartTransaction(long readonly); |
Starts a new transaction.
Return | Description | |
---|---|---|
EplHandle | The function always returns EPL_OK. | |
Input | Type | Description |
readonly | long |
0: opens a read-write transaction; otherwise: opens a read-only transaction. Read-only transactions are not supported at the moment! |
EplHandle eplCommitTransaction(); |
Terminates the current transaction. Modifications in the database are taken over.
Return | Description | |
---|---|---|
EplHandle | The function always returns EPL_OK. |