I have a 2-D array of doubles (approximately 200 x 2000 elements) that I need to store in a field of a REALSQLDatabase and I'm looking for suggestions as to the best way to do it.
I found an example that stores a picture by writing it out to a temporary file, reading it back as a binary stream, encoding it and putting it into a BLOB database field. I guess it works, but it seems kludgy to me. Alternatively, I could concatenate all of the elements into a string and save it into a VarChar field - again, it seems like a kludge. I think it ought to be possible to save a binary image of the array memory space, possibly by using a MemoryBlock, but I'm not sure how. Any suggestions are appreciated. TIA, -- John Hoover [EMAIL PROTECTED] 301-890-6932 (H) 202-767-2335 (W) _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
