DATAJDBC-259 - Reading and writing to SQL array types.

Currently works for HsqlDb and Postgres, since the others do not support an array column type.

Original pull request: #113.
This commit is contained in:
Jens Schauder
2019-01-24 08:50:59 +01:00
committed by Mark Paluch
parent 75ea44536f
commit 83ca6b4739
13 changed files with 228 additions and 30 deletions

View File

@@ -118,6 +118,8 @@ The properties of the following types are currently supported:
* `java.util.Date`, `java.time.LocalDate`, `java.time.LocalDateTime`, and `java.time.LocalTime`
* Arrays and Collections of the types mentioned above can be mapped to columns of array type if your database supports that.
* Anything your database driver accepts.
* References to other entities. They are considered a one-to-one relationship, or an embedded type.