I seem to have two options on how to implement arrays, and I want to know which I should go with:
Use the ARRAY data type and (from what I understand) effectively serialize data objects into the database (which in my case are just wrapped primitive types; don't know of another way to make this work).
Use a separate table and map with foreign keys for each array item.
If you have experience with this (especially with H2), which would you recommend?