summaryrefslogtreecommitdiff
path: root/src/postgres.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-10-22 17:36:30 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-10-22 17:36:30 -0400
commit73b87d3545adf11b434837d0fee28500ef009bd6 (patch)
tree4b2eee33b6c42ab787f16df7b8bfc48e6f910b5a /src/postgres.sml
parent4e7c75607f1c93d4d3fe983aede819d1da483f1b (diff)
Chars working with SQLite
Diffstat (limited to 'src/postgres.sml')
-rw-r--r--src/postgres.sml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/postgres.sml b/src/postgres.sml
index 12142fe2..51e856db 100644
--- a/src/postgres.sml
+++ b/src/postgres.sml
@@ -902,7 +902,9 @@ val () = addDbms {name = "postgres",
supportsNextval = true,
supportsNestedPrepared = true,
sqlPrefix = "",
- supportsOctetLength = true}
+ supportsOctetLength = true,
+ trueString = "TRUE",
+ falseString = "FALSE"}
val () = setDbms "postgres"