summaryrefslogtreecommitdiff
path: root/tests/time.ur
blob: f66004a58f04e5cf94d45c79c8df9cb4bf4fb0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>