oracle-r2dbc
oracle-r2dbc copied to clipboard
R2DBC Driver for Oracle Database
I try to run r2dbc application with spring-boot-starter-data-r2dbc and oracle-r2dbc but it gives me an exception " org.springframework.dao.DataAccessResourceFailureException: Failed to obtain R2DBC Connection; nested exception is java.lang.IllegalStateException: This publisher does...
Maybe it's premature, but I can hope :) One awesome Oracle feature that could *greatly* profit from R2DBC support is Oracle AQ. Instead of blocking on `DBMS_AQ.DEQUEUE` calls, I could...
Fixes #83. As explained and discussed in the issue, neither Oracle's R2DBC driver nor R2DBC itself support user defined datatypes within itself. I'm not aware about other databases, but my...
Upgrade from oracle-r2dbc version 0.4.0 to 1.0.0 is resulting in class cast exception while update.
Hi, I was trying to upgrade R2DBC from 0.4.0 to 1.0.0. while doing that I am getting error in update which was working fine in version 0.4.0. Below is the...
This branch adds support for REF CURSOR results from PL/SQL. A new REF_CURSOR constant in OracleR2dbcTypes allows out parameters to be registered for this type. Readable.get(...) methods allow REF CURSOR...
This branch adds support for retrieving Oracle Net Descriptors from an LDAP server. Oracle R2DBC will now accept "ldap" as a protocol in the r2dbc:oracle: URI scheme. LDAP functionality added...
Sample Code: Exception takes place in the highlighted code in bold below testSubscriptionMono.flatMap(testSubscription -> { testSubscription.setMembershipStatus("ENROLLED"); return repositoryService.saveTestSubscription(testSubscription); })**.subscribe(value -> System.out.println("RECEIVED " + value), error -> error.printStackTrace());** Depdendencies:  Error...
Hi, I am using R2DBC with oracle, where I am trying to get some details from a view. This view is having some warning while executing it which is not...
Hello, i have a simple User entity class. when i tried to save, i hit this exception. tired using different other database like Mysql, and there isn't such exception. ```...
We should make sure JavaDocs aren't broken before merging to main.