File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed
vertx-oracle-client/src/main/asciidoc Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,17 @@ scalability and low overhead.
66
77*Features*
88
9- * todo
9+ * Event driven
10+ * Java 8 Date and Time
11+
12+ *Not supported yet*
13+
14+ * Built-in connection pooling
15+ * RxJava API
16+ * Prepared queries caching
17+ * Cursor
18+ * Row streaming
19+ * Stored Procedures
1020
1121 WARNING: this module is in tech preview
1222
@@ -144,6 +154,19 @@ include::transactions.adoc[]
144154
145155include::cursor.adoc[]
146156
157+ == Data types supported
158+
159+ Currently, the client supports the following Oracle data types:
160+
161+ * CHAR/VARCHAR2(`java.lang.String`)
162+ * NCHAR/NVARCHAR2(`java.lang.String`)
163+ * NUMBER(`{@link java.math.BigDecimal}`)
164+ * FLOAT(`java.lang.Double`)
165+ * DATE(`java.time.LocalDate`)
166+ * TIMESTAMP(`java.time.LocalDateTime`)
167+
168+ Tuple decoding uses the above types when storing values.
169+
147170== Tracing queries
148171
149172include::tracing.adoc[]
You can’t perform that action at this time.
0 commit comments