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:
thanks
noccy
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