> I haven't been very successful in finding info about what can be done with
> Arrays in H2 and how to use them, and would appreciate references to any
> documentation/examples.
Well, what do you _want_ to do, that is, what problem do you have and
want to solve?
The documentation is at
http://h2database.com/html/datatypes.html#array_type
http://h2database.com/html/functions.html#array_get
there are also test cases and sample applications that show how to use
arrays, for example org.h2.samples.FunctionMultiReturn.
Regards,
Thomas
ARRAY TypeARRAYAn array of values. Use a value list (1, 2) or Mapped to Example: ARRAY |
indicates it is possible to store elements of general types, but I hadn't been able to find guidance on getting the element back out of the array. I'll take a look at the code sample you mentioned above. |