python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to implement a list of DB update queries in one call with SpringBoot Webflux + R2dbc application
The goal of my springBoot webflux r2dbc application is Controller accepts a Request including a list of DB UPDATE or INSERT details, and Response a result summary back.
I can write a ReactiveCrudRepo...
Chen Wang
Votes: 0
Answers: 1
How to provide credentials for Spanner integration tests with Spring Boot, R2DBC and TestContainers (Spanner Emulator)
Here is the error from the execution of the integration tests:
com.google.cloud.spanner.SpannerException:
UNAUTHENTICATED: com.google.api.gax.rpc.UnauthenticatedException: io.grpc.StatusRuntimeExcept...
magiccrafter
Votes: 0
Answers: 3
Getting reactor.pool.PoolShutdownException during save in database
Service is using org.springframework.r2dbc.core.DatabaseClient with reactor-pool and r2dbc-mysql driver.
I'm doing inserts in the database every 5-10 seconds (50-100 insert statements) and randomly af...
Vladlen Gladis
Votes: 0
Answers: 2
support for varchar[] array type in R2DBC Postgres Criteria
I am trying to build a query similar to the below query using criteria query having varchar[] column in Postgres.
SELECT *
FROM table_name
WHERE (arrays['value1','value2']::varchar[] && colu...
user108
Votes: 0
Answers: 2