I just donβt want to have a bunch of different columns for each of 12 values ββin each of 9 different arrays, so if there is another approach to achieve this (conversion to bytes [], etc.). I am more than wanting to hear it.
From the description above, it looks like you are using an RDBMS.
The fact that you want to keep multiple values ββin one column yells about a design problem.
I agree that having separate columns may not be able to, especially if the number of elements in each array can potentially change in the future.
Consider splitting this data into a separate table and mapping from 1 to many with your original table with a foreign key relationship
alvarorahul
source share