Mercurial > urweb
view tests/pquery.ur @ 293:711aad3869d1
Error-parsing floats and bools
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 07 Sep 2008 12:19:15 -0400 |
parents | fdd7a698be01 |
children | 1afa94582275 |
line wrap: on
line source
table t1 : {A : int, B : string, C : float} fun lookup (inp : {B : string}) = s <- query (SELECT t1.B FROM t1 WHERE t1.B = {inp.B}) (fn fs _ => return fs.T1.B) "Couldn't find it!"; return <html><body> Result: {cdata s} </body></html> fun main () : transaction page = return <html><body> <lform> B: <textbox{#B}/> <submit action={lookup}/> </lform> </body></html>