annotate tests/lower.ur @ 2134:752e5efe9da9

Use hyperref in manual This allows the table of contents to show up properly in PDF readers.
author Julian Squires <julian@cipht.net>
date Fri, 24 Apr 2015 07:43:22 -0400
parents 2b312f6d4007
children
rev   line source
adam@1636 1 table lower : { A : string }
adam@1636 2
adam@1636 3 fun main () : transaction page =
adam@1636 4 all <- queryX1 (SELECT *
adam@1636 5 FROM lower
adam@1636 6 WHERE lower(lower.A) LIKE '%foo')
adam@1636 7 (fn r => <xml>{[r.A]}<br/></xml>);
adam@1636 8 return <xml><body>
adam@1636 9 {all}
adam@1636 10 </body></xml>