This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (: A brief comparison between XQuery and XSLT code :) | |
| (: For-each in XQuery.. :) | |
| for $b in $books | |
| order by $b/title | |
| return | |
| $b/title | |
| (: For-each in XSLT.. :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| xquery version '1.0'; | |
| (: A small example of XQuery code that searches for books with the string ‘XQuery’ in its title.. :) | |
| <html> | |
| <body> | |
| <ul>{ | |
| (: Search all books :) | |
| for $b in collection('books')/book |
NewerOlder