Mercurial > urweb
diff src/compiler.sml @ 282:0236d9412ad2
Ran a prepared statement with one string parameter
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 07 Sep 2008 09:28:13 -0400 |
parents | fdd7a698be01 |
children | 3ed7a7c7b060 |
line wrap: on
line diff
--- a/src/compiler.sml Thu Sep 04 10:27:21 2008 -0400 +++ b/src/compiler.sml Sun Sep 07 09:28:13 2008 -0400 @@ -451,6 +451,13 @@ val toCjrize = transform cjrize "cjrize" o toMono_opt2 +val prepare = { + func = Prepare.prepare, + print = CjrPrint.p_file CjrEnv.empty +} + +val toPrepare = transform prepare "prepare" o toCjrize + val sqlify = { func = Cjrize.cjrize, print = CjrPrint.p_sql CjrEnv.empty @@ -472,7 +479,7 @@ end fun compile job = - case run toCjrize job of + case run toPrepare job of NONE => print "Ur compilation failed\n" | SOME file => let