How to access a huge xml document

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

I always used XmlDocument to load a xml file into memory and to access it.
But if the xml is very huge (Say over 500MB)
How can I access it?
 
Ad,

This is an ADONET newsgroup, if it is about an XMLDocument, I guess you will
have a better change on an answer in one of the languages newsgroups.

microsoft.public.dotnet.languages.vb/csharp/vc

Just an idea

Cor
 
Thank,
For example, I have a xml document below
How can I use XmlTextReader to export it into a database ?
----------------------------------------------------------------------------
----------------------------------
<?xml version="1.0" encoding="utf-8" ?>
<bookstore>
<book>
<title>The Handmaid's Tale</title>
<price>12.95</price>
</book>
<book>
<title>Pride and Prejudice</title>
<price>24.95</price>
</book>
</bookstore>
 
Back
Top