Registry / database / r2dbc-h2

r2dbc-h2

JSON →
library1.1.0.RELEASEjavamavenunverified

A reactive relational database driver for H2 database using the R2DBC specification.

<dependency> <groupId>io.r2dbc</groupId> <artifactId>r2dbc-h2</artifactId> <version>1.1.0.RELEASE</version> </dependency>
INSTALL
IMPORT
SIG · R2DBC-H2
R
r2dbc-h2
databasejavav1.1.0.RELEASE
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

H2ConnectionFactory
io.r2dbc.h2.H2ConnectionFactory

Creates a reactive connection to an in-memory H2 database.

import io.r2dbc.h2.H2ConnectionFactory; import io.r2dbc.h2.H2ConnectionConfiguration; import io.r2dbc.spi.Connection; public class R2dbcH2Example { public static void main(String[] args) { H2ConnectionFactory factory = new H2ConnectionFactory( H2ConnectionConfiguration.builder() .inMemory("testdb") .build() ); factory.create().subscribe(connection -> { System.out.println("Connected to H2 in-memory database."); }); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.1.0.RELEASElatest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
r2dbc-h2 — mvn dependency:get r2dbc-h2 · libregistry