oracle / oracle-r2dbc

R2DBC Driver for Oracle Database
https://oracle.com
Other
194 stars 40 forks source link

1.0.0 SPI Update #68

Closed Michael-A-McMahon closed 2 years ago

Michael-A-McMahon commented 2 years ago

This branch updates the SPI version implemented by Oracle R2DBC. The driver now implements version 1.0.0 of the SPI.

The getColumnNames method is removed from implementations of RowMetadata and OutParametersMetadata. This method was removed in SPI version 1.0.0.

The getUpdateCount method of the Result implementation is modified to return a Publisher of Long. Previous SPI versions had this method return a Publisher of Integer, but in version 1.0.0 it now returns a Publisher of Long.

The Oracle JDBC dependency is also updated to version 21.5, which is the latest version available currently. This is done to ensure Oracle R2DBC is benefiting from the latest fixes and improvements in Oracle JDBC.