Link to home
Start Free TrialLog in
Avatar of troyhalsey
troyhalsey

asked on

XML without SQL?

I know it is possible to access an xml file without using sql...I have done it with basic forms a number of times.

But my big picture goal is to make xml files be my file format for the application I am creating.  Which means that xml files will have a lot of data and sections.  I am trying to figure out how multiple forms with different information and in use at different times can save to the same xml file?  I desperately want to avoid using any servers as I want this application to be 100% stand alone.  So the application is standalone...and one xml file contains all info for a project within the application.  Make sense?  Thanks for your help.

Troy

Avatar of Mikal613
Mikal613
Flag of United States of America image

http://www.codeproject.com/vb/net/parsefilecode.asp

you dont need sql for XML

You can read and write xml files using the XML namespace.

You can even query it using XPath
ASKER CERTIFIED SOLUTION
Avatar of Mikal613
Mikal613
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of troyhalsey
troyhalsey

ASKER

Thanks Mikal...I will read up and see what my next questions will be.

Troy