diff src/cjr.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 09c66a30ef32
children c0e4ac23522d
line wrap: on
line diff
--- a/src/cjr.sml	Thu Sep 04 10:27:21 2008 -0400
+++ b/src/cjr.sml	Sun Sep 07 09:28:13 2008 -0400
@@ -76,7 +76,8 @@
                      state : typ,
                      query : exp,
                      body : exp,
-                     initial : exp }
+                     initial : exp,
+                     prepared : int option }
 
 withtype exp = exp' located
 
@@ -90,6 +91,7 @@
 
        | DTable of string * (string * typ) list
        | DDatabase of string
+       | DPreparedStatements of (string * int) list
 
 withtype decl = decl' located