Home Previous Up Next Index

Transaction

Overview

local interface Transaction

A transaction. If you want to use a transaction concurrently in multiple threads, you need to serialize access to this transaction.

Used By

Connection::beginTransaction
Connection::currentTransaction

Operations

void commit()

Commit this transaction.

void rollback()

Roll back this transaction.


Home Previous Up Next Index