Questions tagged [r2dbc]

R2DBC (Reactive Relational Database Connectivity) is an SPI which enables interacting with SQL database servers by executing SQL statements using a non-blocking reactive programming model with the Java programming language.

R2DBC is a Java-based, open source data access technology.

This technology is an SPI (Service Provider Interface) for the Java programming language that defines how a client may access a database using reactive programming. It specifies SPI methods for executing queries using a non-blocking driver. R2DBC is oriented towards relational databases.

Online resources

379 questions
-1
votes
1 answer

Calling Oracle Stored Procedure from R2DBC

I am trying to call an Oracle stored procedure from Spring Data R2DBC. I have currently set up querying either by annotation or R2DBC entity template and those work fine. However, I have not been able to call a proc with input/output parameters. I…
-1
votes
2 answers

Spring Data Multiple Host Setting for MYSQL R2DBC

I am trying to access the read replica database from Spring R2DBC.My connection string looks like this spring: r2dbc: url:…
-1
votes
1 answer

How to connect to postgres and execute query using r2dbc

I'm trying to write a simple function which will connect to postgres and execute a select statement. PostgresqlConnectionFactory connectionFactory = new PostgresqlConnectionFactory( PostgresqlConnectionConfiguration.builder() …
Santosh Hegde
  • 3,420
  • 10
  • 35
  • 51
-3
votes
1 answer

Spring data with R2DBC(Mysql) Example for one to many association

Can I know how to do association(One to Many) in Spring data JDBC with R2DBC(Mysql).Please provide small code example or git link if possible. For Example, I have one employee table and address table is child of employee. One employee can have…
1 2 3
25
26