annotate tests/view.ur @ 2209:0ca11d57c175

Cleans up interface (it's now a command line option) and renames project to "sqlcache" in the all-one-word style. Still has issues to do with concurrency, retrying transactions, and foreign function calls that either rely on state or have side effects.
author Ziv Scully <ziv@mit.edu>
date Sat, 31 May 2014 03:08:16 -0400
parents 8688e01ae469
children
rev   line source
adamc@754 1 table t : { A : int, B : string }
adamc@754 2
adamc@754 3 view v = SELECT t.A AS X FROM t
adamc@754 4
adamc@754 5 fun main () =
adamc@754 6 rows <- queryX (SELECT * FROM v)
adamc@754 7 (fn r => <xml><li>{[r.V.X]}</li></xml>);
adamc@754 8 return <xml><body>
adamc@754 9 {rows}
adamc@754 10 </body></xml>