So I've googled this to death, and have searched the forums, etc, and I have not been able to find an answer on this.
I need to know how to go about mapping/persisting a simple boolean array, array size of about 100.
Example list of properties in my object:
Code:
private String inputText;
private String identifierName;
private int enumId;
private boolean[] validMfgs;
...
The first 3 properties are trivial, but how do I map the boolean[]? And can this be done in a single DB field or will it have to be normalized? (This will have to be deployed on several different client databases, including Oracle and MySQL among others)