summaryrefslogtreecommitdiff
path: root/src/cjr.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 09:28:13 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 09:28:13 -0400
commit1777fbbddce252990fc5055e4e5462123938483c (patch)
treed38bcc3f03b117015ed1691f79c921acf1651bfa /src/cjr.sml
parent711796ea5b4bf5d36b644eafa1b198ed3e4e1798 (diff)
Ran a prepared statement with one string parameter
Diffstat (limited to 'src/cjr.sml')
-rw-r--r--src/cjr.sml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cjr.sml b/src/cjr.sml
index 4d6608ce..0f261de6 100644
--- a/src/cjr.sml
+++ b/src/cjr.sml
@@ -76,7 +76,8 @@ datatype exp' =
state : typ,
query : exp,
body : exp,
- initial : exp }
+ initial : exp,
+ prepared : int option }
withtype exp = exp' located
@@ -90,6 +91,7 @@ datatype decl' =
| DTable of string * (string * typ) list
| DDatabase of string
+ | DPreparedStatements of (string * int) list
withtype decl = decl' located