Skip to content

Commit

Permalink
Merge pull request #151 from oracle/Michael-A-McMahon-patch-1
Browse files Browse the repository at this point in the history
Fixed REF cursor example
  • Loading branch information
jeandelavarene authored Oct 10, 2024
2 parents 41e8df9 + 8dfa7cc commit 143cf9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ Use the `oracle.r2dbc.OracleR2dbcTypes.REF_CURSOR` type to bind `SYS_REFCURSOR`
out parameters:
```java
Publisher<Result> executeProcedure(Connection connection) {
connection.createStatement(
return connection.createStatement(
"BEGIN example_procedure(:cursor_parameter); END;")
.bind("cursor_parameter", Parameters.out(OracleR2dbcTypes.REF_CURSOR))
.execute()
Expand Down

0 comments on commit 143cf9f

Please sign in to comment.