comparison src/postgres.sml @ 1014:ea9f03ac2710

Chars working with SQLite
author Adam Chlipala <adamc@hcoop.net>
date Thu, 22 Oct 2009 17:36:30 -0400
parents 16f7cb0891b6
children b2311dfb3158
comparison
equal deleted inserted replaced
1013:d9483301ff0e 1014:ea9f03ac2710
900 createSequence = fn s => "CREATE SEQUENCE " ^ s, 900 createSequence = fn s => "CREATE SEQUENCE " ^ s,
901 textKeysNeedLengths = false, 901 textKeysNeedLengths = false,
902 supportsNextval = true, 902 supportsNextval = true,
903 supportsNestedPrepared = true, 903 supportsNestedPrepared = true,
904 sqlPrefix = "", 904 sqlPrefix = "",
905 supportsOctetLength = true} 905 supportsOctetLength = true,
906 trueString = "TRUE",
907 falseString = "FALSE"}
906 908
907 val () = setDbms "postgres" 909 val () = setDbms "postgres"
908 910
909 end 911 end