Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Really you may be better off creating a VarBinary(MAX) field and serializing the DataSet (or XML data) into that field. I believe that this will be less complicated and produce better results. Anytime that we have the need to store XML contents, we will generally use a VarChar(MAX) and store teh XML text or use a VarBinary(MAX) and store the Byte() array of the file. Either way will work, and the VarChar(MAX) may be easier than storing it as a VarBinary byte array. But this the approach that I would take.
|