view tests/time.ur @ 439:322c8620bbdf

Marshaling time to SQL
author Adam Chlipala <adamc@hcoop.net>
date Thu, 30 Oct 2008 15:11:37 -0400
parents 1c27f03d9bd2
children 19d7f79cd584
line wrap: on
line source
table t : { Id : int, Time : time }

val now : time = readError "10/30/08 14:35:42"
val later : time = readError "10/30/08 14:37:42"

fun main () =
    dml (INSERT INTO t (Id, Time) VALUES (42, {now}));
    xml <- queryX (SELECT * FROM t)
           (fn r => <xml>{[r.T.Id]}: {[r.T.Time]}<br/></xml>);
    return <xml><body>
      {xml}
      {[now]}, {[now = now]}, {[now = later]}, {[later < now]}, {[now < later]}
    </body></xml>