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
+99-2
Original file line number
Diff line number
Diff line change
@@ -779,6 +779,7 @@ types of Oracle Database.
779
779
|[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`|
780
780
|[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[]`, `byte[]`, or `oracle.sql.VECTOR`|
782
783
> Unlike the standard SQL type named "DATE", the Oracle Database type named
783
784
> "DATE" stores values for year, month, day, hour, minute, and second. The
784
785
> 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
1047
+
as when converting a `double[]` into a VECTOR of 32-bit floating point numbers.
1048
+
[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).
1049
+
1050
+
The `OracleR2dbcTypes.VECTOR` type descriptor can be used to register an OUT or
0 commit comments