Skip to content

Commit d2878dc

Browse files
committed
OracleConnection may leak if handler is null
Do not connect if handler is null Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
1 parent a466715 commit d2878dc

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

vertx-oracle-client/src/main/asciidoc/index.adoc

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff 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

145155
include::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

149172
include::tracing.adoc[]

0 commit comments

Comments
 (0)