Add-on | XQuery
Consider an XML file as a database
Apply queries to it: "get all cities with population greater than 100000"
Still in development (2001)
FOR $c IN document("myfile")//city WHERE $c/pop >= 100000 RETURN $c/name
Bert Bos
14 of 29