Mercurial > urweb
view tests/sqliteTime.ur @ 2115:3dc020fb2aa1
An Emacs urweb-mode optimization contributed by John Wiegley
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Wed, 11 Feb 2015 13:12:59 -0500 |
parents | 703c2c94afd5 |
children |
line wrap: on
line source
table dates : { Date : time } fun aform () = let val a : time = readError "01/02/03 04:06:07" in dml(INSERT INTO dates (Date) VALUES ({[a]})); ds <- queryX (SELECT * FROM dates) (fn r => <xml>{[r.Dates.Date]}<br/></xml>); return <xml><body>{ds}</body></xml> end fun main () = return <xml><body><form><submit action={aform}/></form></body></xml>