Thanks for the suggestion, but it's not quite what I am looking
for. I need a way of storing the actual cluster itself (as one
field) in the database because it contains several arrays. The
structure of the database looks like this:
ForeignKey1 ForeignKey2 PrimaryKey
Parameter1(string) Parameter2(Integer)
RawData(Cluster of arrays)
Now, when I use the INSERT statement, I can create a cluster of all of
these values, so the RawData cluster gets flattened, converted to some
"binary" format, and then inserted. I've actually looked at the
code for the INSERT statement to see how it does this conversion and
tried to duplicate it, but I'm not very clear on the theory behind this
so I have not been very successful.