comparison src/mysql.sml @ 1014:ea9f03ac2710

Chars working with SQLite
author Adam Chlipala <adamc@hcoop.net>
date Thu, 22 Oct 2009 17:36:30 -0400
parents d9483301ff0e
children b2311dfb3158
comparison
equal deleted inserted replaced
1013:d9483301ff0e 1014:ea9f03ac2710
1537 createSequence = fn s => "CREATE TABLE " ^ s ^ " (uw_id INTEGER PRIMARY KEY AUTO_INCREMENT)", 1537 createSequence = fn s => "CREATE TABLE " ^ s ^ " (uw_id INTEGER PRIMARY KEY AUTO_INCREMENT)",
1538 textKeysNeedLengths = true, 1538 textKeysNeedLengths = true,
1539 supportsNextval = false, 1539 supportsNextval = false,
1540 supportsNestedPrepared = false, 1540 supportsNestedPrepared = false,
1541 sqlPrefix = "SET storage_engine=InnoDB;\n\n", 1541 sqlPrefix = "SET storage_engine=InnoDB;\n\n",
1542 supportsOctetLength = true} 1542 supportsOctetLength = true,
1543 trueString = "TRUE",
1544 falseString = "FALSE"}
1543 1545
1544 end 1546 end