Mercurial > urweb
view tests/sql_option.ur @ 1931:1a04b1edded2
Fix regression in http.c for long-polling connections; add lazy initialization of database connections, to avoid the overhead in handlers that don't use SQL
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 11 Dec 2013 14:57:54 -0500 |
parents | 4efab85405be |
children |
line wrap: on
line source
table t : { O : option int } fun addNull () = dml (INSERT INTO t (O) VALUES (NULL)); return <xml>Done</xml> fun add3 () = dml (INSERT INTO t (O) VALUES ({Some 3})); return <xml>Done</xml> fun addN r = dml (INSERT INTO t (O) VALUES ({Some (readError r.N)})); return <xml>Done</xml> fun main () : transaction page = xml <- queryX (SELECT * FROM t) (fn r => case r.T.O of None => <xml>Nada<br/></xml> | Some n => <xml>Num: {[n]}<br/></xml>); return <xml><body> {xml} <a link={addNull ()}>Add a null</a><br/> <a link={add3 ()}>Add a 3</a><br/> <form> Add <textbox{#N}/> <submit action={addN}/> </form> </body></xml>