Help with my xml document

  • Thread starter Thread starter Levi
  • Start date Start date
L

Levi

I need help with xml. every time i try to use it it never comes out right.
I'll let you have a look at it:

<?xml version="1.0"?>
<Bookstore>
<fiction>
<book>
<title>Percy Jackson and the Olympians; The Last Olympian</title>
<author>Rick Riordan</author>
<price>$19.95</price>
</book>
<book>
<title>Percy Jackson and the Olympians; The Sea of Monsters</title>
<author>Rick Riordan</author>
<price>$19.95</price>
</book>
</fiction>
</bookstore>
 
Well, this is not really the best newsgroup to ask this kind of question as
this one is about ADP and SQL-Server and as such is not really about XML.
Also, you don't say how you are trying to use this XML and why it never
comes out right (error message upon loading, no error message but incorrect
data, etc.).

Finally, xml is case sensitive, so <Bookstore> and </bookstore> are two
different tags.

--
Sylvain Lafontaine, ing.
MVP - Windows Live Platform
Email: sylvain2009 sylvainlafontaine com (fill the blanks, no spam please)
Independent consultant and remote programming for Access and SQL-Server
(French)
 
Levi said:
I need help with xml. every time i try to use it it never comes out right.
I'll let you have a look at it:

<?xml version="1.0"?>
<Bookstore>
<fiction>
<book>
<title>Percy Jackson and the Olympians; The Last Olympian</title>
<author>Rick Riordan</author>
<price>$19.95</price>
</book>
<book>
<title>Percy Jackson and the Olympians; The Sea of Monsters</title>
<author>Rick Riordan</author>
<price>$19.95</price>
</book>
</fiction>
</bookstore>
 
Back
Top