lastStatements property

bool? lastStatements
getter/setter pair

If set to true, this request marks the end of the transaction.

The transaction should be committed or aborted after these statements execute, and attempts to execute any other requests against this transaction (including reads and queries) will be rejected. Setting this option may cause some error reporting to be deferred until commit time (e.g. validation of unique constraints). Given this, successful execution of statements should not be assumed until a subsequent Commit call completes successfully.

Optional.

Implementation

core.bool? lastStatements;