You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+89-3Lines changed: 89 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -673,7 +673,7 @@ types of Oracle Database.
673
673
|[INTERVAL DAY TO SECOND](https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/Data-Types.html#GUID-B03DD036-66F8-4BD3-AF26-6D4433EBEC1C)|`java.time.Duration`|
674
674
|[INTERVAL YEAR TO MONTH](https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/Data-Types.html#GUID-ED59E1B3-BA8D-4711-B5C8-B0199C676A95)|`java.time.Period`|
|[VECTOR](https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/Data-Types.html#GUID-801FFE49-217D-4012-9C55-66DAE1BA806F)|`double[]`, `float[]` or `byte[]`|
676
+
|[VECTOR](https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/Data-Types.html#GUID-801FFE49-217D-4012-9C55-66DAE1BA806F)|`double[]`, `float[]`, `byte[]`, or `oracle.sql.VECTOR`|
677
677
> Unlike the standard SQL type named "DATE", the Oracle Database type named
678
678
> "DATE" stores values for year, month, day, hour, minute, and second. The
679
679
> standard SQL type only stores year, month, and day. LocalDateTime objects are able
The factory methods of `oracle.sql.VECTOR` may perform lossy conversions, such
941
+
as when converting a `double[]` into a VECTOR of 32-bit floating point numbers.
942
+
[The JavaDocs of these methods specify which conversions are lossy](https://docs.oracle.com/en/database/oracle/oracle-database/23/jajdb/oracle/sql/VECTOR.html).
943
+
944
+
The `OracleR2dbcTypes.VECTOR` type descriptor can be used to register an OUT or
0 commit comments