I have googled this question but I do not understand clearly what is schema and DTD and why Schema is more powerful compared to DTD.
Any guidance would be highly appreciated.
Thanks.
|
feedback
|
|
From the Differences Between DTDs and Schema section of the Converting a DTD into a Schema article:
| ||||
|
feedback
|
|
DTD predates XML and is therefore not valid XML itself. That's probably the biggest reason for XSD's invention. | |||||
feedback
|
|
DTD is pretty much deprecated because it is limited in its usefulness as a schema language, doesn't support namespace, and does not support data type. In addition, DTD's syntax is quite complicated, making it difficult to understand and maintain.. | ||||
|
feedback
|
|
One difference is also that in a DTD, the content model of an element is completely determined by its name, independently of where it appears in the document. So, say you want to have a The other major difference is support for namespaces. Since DTDs are part of the original XML specification (and inherited from SGML), they are not namespace-aware at all because XML namespaces were specified later. You can use DTDs in combination with namespaces, but it requires some contortions, like being forced to define the prefixes in the DTD and using only those prefixes, instead of being able to use arbitrary prefixes. To me, other differences are mostly superficial. Datatype support could easily be added to DTDs, and syntax is just syntax. (I, for one, find the XML Schema syntax horrible and would never want to hand-maintain an XML Schema, which I wouldn't say about DTDs or RELAX NG schemas; if I need an XML Schema for some reason, I usually write a RELAX NG one and convert it with | |||
|
feedback
|