Is this xml well formed?

noccy

Member
Joined
Jan 17, 2005
Messages
13
Hi!

I am new to working with xml files, and need to know if I am on the right track... The file is supposed to show the schema of a database:

Code:
<?xml version="1.0" encoding="utf-8" ?> 
- <Schema>
- <Tables>
- <Table Name="Categories">
- <Fields>
  <Field>Description</Field> 
  </Fields>
  </Table>
- <Table Name="Customers">
- <Fields>
  <Field>CompanyName</Field> 
  <Field>ContactName</Field> 
  <Field>ContactTitle</Field> 
  </Fields>
  </Table>
- <Table Name="Employees">
- <Fields>
  <Field>Country</Field> 
  <Field>EmployeeID</Field> 
  <Field>Extension</Field> 
  <Field>FirstName</Field> 
  <Field>HireDate</Field> 
  </Fields>
  </Table>
  </Tables>
  </Schema>


thanks

noccy
 
Back
Top