F Frazer Jun 11, 2004 #1 hi is there any fast way to read xml into a dataset. ? readxml function seems too slow.
J Jon Skeet [C# MVP] Jun 11, 2004 #2 Frazer said: hi is there any fast way to read xml into a dataset. ? readxml function seems too slow. Click to expand... Could you post a short but complete program which demonstrates the problem? See http://www.pobox.com/~skeet/csharp/complete.html for details of what I mean by that.
Frazer said: hi is there any fast way to read xml into a dataset. ? readxml function seems too slow. Click to expand... Could you post a short but complete program which demonstrates the problem? See http://www.pobox.com/~skeet/csharp/complete.html for details of what I mean by that.
C Cor Ligthert Jun 11, 2004 #3 Hi Frazer, The fastest way I know is. ds as new dataset ds.readXML(The place where it is) For the rest it is your tranport what can give you problems. Cor
Hi Frazer, The fastest way I know is. ds as new dataset ds.readXML(The place where it is) For the rest it is your tranport what can give you problems. Cor