Functions: Transactions

Functions for starting, terminating, and aborting transactions.

eplStartTransaction

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!

eplCommitTransaction

EplHandle
eplCommitTransaction();

Terminates the current transaction. Modifications in the database are taken over.

Return Description
EplHandle The function always returns EPL_OK.