TransactionProps extension

deno-postgres@v0.17.0/Transaction.

on

Properties

isolationLevel IsolationLevel
deno-postgres@v0.17.0/Transaction/isolation_level.
read-only
snapshot Future<String>
deno-postgres@v0.17.0/Transaction/getSnapshot.
read-only

Methods

begin() Future<void>
deno-postgres@v0.17.0/Transaction/begin.
commit({bool? chain}) Future<void>
deno-postgres@v0.17.0/Transaction/commit.
createSavepoint(String name) Future<Savepoint>
deno-postgres@v0.17.0/Transaction/savepoint.
getActiveSavepointsNames() List<String>
deno-postgres@v0.17.0/Transaction/getSavepoints.
queryArray<T extends List>(String query, [QueryArguments? args]) Future<QueryArrayResult<T>>
deno-postgres@v0.17.0/Transaction/queryArray.
queryArrayWithOptions<T extends List>(QueryObjectOptions config) Future<QueryArrayResult<T>>
deno-postgres@v0.17.0/Transaction/queryArray.
queryObject<T>(String query, [QueryArguments? arguments]) Future<QueryObjectResult<T>>
deno-postgres@v0.17.0/Transaction/queryObject.
queryObjectWithOptions<T>(QueryObjectOptions config) Future<QueryObjectResult<T>>
deno-postgres@v0.17.0/Transaction/queryObject.
rollback([Savepoint? savepoint]) Future<void>
deno-postgres@v0.17.0/Transaction/rollback.
rollbackByName(String savepoint) Future<void>
deno-postgres@v0.17.0/Transaction/rollback.
rollbackWithChain() Future<void>
deno-postgres@v0.17.0/Transaction/rollback.