How to get the dataset size (in bytes)?

  • Thread starter Thread starter Guest
  • Start date Start date
Hi,

The size returned in the preview matches the length of the string returned
by calling the DataSet.GetXml() method.

Hope this helps
 
Chris Taylor said:
The size returned in the preview matches the length of the string returned
by calling the DataSet.GetXml() method.

That's quite scary, seeing as the XML could presumably include various
Unicode characters which aren't representable in any normal encoding as
a single byte...
 
Any other better method
I am going to use lenb or marshal.sizeof function to return the no. of bytes of the XM

Actually, I am doing some kind of performance tuning
I want to know the exact "size" of the data return from the server to the clien
That's why I ask this
 
Back
Top