Mercurial > urweb
view tests/treeDyn.ur @ 2177:00cf8214c2e3
Switching to a more dynamic method of handling database reconnection, restarting transactions
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 17 Oct 2015 11:08:12 -0400 |
parents | aa2398e58306 |
children |
line wrap: on
line source
table t : {Id : int, Parent : option int} fun recurse (root : option int) = queryX' (SELECT * FROM t WHERE {eqNullable' (SQL t.Parent) root}) (fn r => children <- recurse (Some r.T.Id); (*s <- source False;*) return <xml> <dyn signal={(*v <- signal s; if v then*) return <xml><b>HI</b>{children}<b>BYE</b></xml> (*else return <xml/>*)}/> </xml>) fun main () = x <- recurse None; return <xml><body>{x}</body></xml>