Transactions with MariaDB Connector/R2DBC
This page is part of MariaDB's Documentation.
The parent of this page is: Using the Native R2DBC API of MariaDB Connector/R2DBC
Topics on this page:
Overview
Java developers can use MariaDB Connector/R2DBC to connect to MariaDB database products using the Reactive Relational Database Connectivity (R2DBC) API. R2DBC operations are non-blocking, which makes R2DBC more scalable than Java's standard JDBC API.
Transactions
By default, MariaDB Connector/R2DBC enables the auto-committing of transactions on all connections. When you issue a statement that modifies the table through the Connector, it automatically commits the transaction, making the change permanent on the database.
The native implementation of MariaDB Connector/R2DBC does not provide out-of-the-box support for reactive streams transactions unless user managed transactions are subscribed to using Mono.from(Connection.beginTransaction()).block()
, Mono.from(Connection.commitTransaction()).block()
, and Mono.from(Connection.rollbackTransaction()).block()
method calls.
To use Spring framework managed reactive streams transactions from your Java code, use MariaDB Connector/R2DBC with Spring Data R2DBC.