More XML: semantics, DTDs, XPATH February 18, 2004
XML Document Mary Maple 345 Seattle John Thailand Mary Maple 345 Seattle John Thailand person elements name elements attributes
XML Terminology Elements –enclosed within tags: … –nested within other elements: … –can be empty abbreviated as –can have Attributes … XML document has as single ROOT element
Buzzwords What is XML? –W3C data exchange format –Hierarchical data model –Self-describing –Semi-structured
XML as a Tree !! Mary Maple 345 Seattle John Thailand Mary Maple 345 Seattle John Thailand data person Mary name address streetnocity Maple345 Seattle name address John Thai phone id o555 Element node Text node Attribute node Minor Detail: Order matters !!!
XML is self-describing Schema elements become part of the data –In XML,, are part of the data, and are repeated many times –Relational schema: persons(name,phone) defined separately for the data and is fixed Consequence: XML is much more flexible
Relational Data as XML John 3634 Sue 6343 Dick 6363 John 3634 Sue 6343 Dick 6363 person name phone “John”3634“Sue”“Dick” persons XML:
XML is semi-structured Missing elements: Could represent in a table with nulls John 1234 Joe John 1234 Joe no phone ! namephone John1234 Joe-
XML is semi-structured Repeated elements Impossible in tables: Mary Mary two phones ! namephone Mary ???
XML is semi-structured Elements with different types in different objects Heterogeneous collections: – can contain both s and s John Smith 1234 John Smith 1234 structured name !
Document Type Definition: DTD an XML document may have a DTD –rules about the contents of elements –like a schema for an XML document XML document: well-formed = if tags are correctly closed valid = if it has a DTD and conforms to it validation is useful in data exchange part of the original XML specification
Very Simple DTD <!DOCTYPE company [ ]> <!DOCTYPE company [ ]> Element What’s in the element? Root Element
DTD: The Content Model Content model: –Complex = a regular expression over other elements –Text-only = #PCDATA –Empty = EMPTY –Any = ANY –Mixed content = (#PCDATA | A | B | C)* content model
Very Simple DTD John B Jim B John B Jim B Example of valid XML document:
DTD: Regular Expressions <!ELEMENT name (firstName, lastName)) <!ELEMENT name (firstName?, lastName)) DTDXML <!ELEMENT person (name, phone*)) sequence optional <!ELEMENT person (name, (phone| ))) Kleene star alternation lots of other features
Querying XML Data XPath = simple navigation through the tree XQuery = the SQL of XML XSLT = recursive traversal –will not discuss in class
Sample Data for Queries Addison-Wesley Serge Abiteboul Rick Hull Victor Vianu Foundations of Databases 1995 Freeman Jeffrey D. Ullman Principles of Database and Knowledge Base Systems 1998 Addison-Wesley Serge Abiteboul Rick Hull Victor Vianu Foundations of Databases 1995 Freeman Jeffrey D. Ullman Principles of Database and Knowledge Base Systems 1998
Data Model for XPath bib book publisherauthor.. Addison-WesleySerge Abiteboul The root The root element
XPath: Simple Expressions Result: Result: empty (there were no papers) /bib/book/year /bib/paper/year
XPath: Restricted Kleene Closure Result: Serge Abiteboul Rick Hull Victor Vianu Jeffrey D. Ullman Result: Rick //author /bib//first-name
Xpath: Text Nodes Result: Serge Abiteboul Jeffrey D. Ullman Rick Hull doesn’t appear because he has firstname, lastname Functions in XPath: –text() = matches the text value –node() = matches any node (= * or text()) –name() = returns the name of the current tag /bib/book/author/text()
Xpath: Wildcard Result: Rick Hull * Matches any element //author/*
Xpath: Attribute Nodes Result: means that price is an attribute
Xpath: Predicates Result: Rick Hull /bib/book/author[firstname]
Xpath: More Predicates Result: … … /bib/book/author[firstname][address[//zip][city]]/lastname
Xpath: More Predicates < “60”] < “25”] /bib/book[author/text()]
Xpath: Summary bibmatches a bib element *matches any element /matches the root element /bibmatches a bib element under root bib/papermatches a paper in bib bib//papermatches a paper in bib, at any depth //papermatches a paper at any depth paper|bookmatches a paper or a a price attribute price attribute in book, in bib matches…