Mercurial > urweb
view tests/insert.ur @ 1710:540df112ff62
Remove string-valued style attribute, which may allow injection attacks
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 15 Apr 2012 12:40:53 -0400 |
parents | bc89dfdbc495 |
children |
line wrap: on
line source
table t1 : {A : int, B : string, C : float, D : bool} fun main () : transaction page = () <- dml (INSERT INTO t1 (A, B, C, D) VALUES (5, "6", 7.0, TRUE)); return <html><body>Inserted.</body></html>