diff options
author | James Moger <james.moger@gmail.com> | 2011-08-11 14:04:01 -0400 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2011-08-11 14:04:01 -0400 |
commit | 0333ed4cf0b5db3f9ffcb0da31787f6e44139af5 (patch) | |
tree | a0c0c57e38dd5e8e48e03b2aa4ad8a2c39bff189 /docs/00_index.mkd | |
parent | f3faeb5d1ea631b0074441f97080e1f2a9145f4b (diff) | |
download | iciql-0333ed4cf0b5db3f9ffcb0da31787f6e44139af5.tar.gz iciql-0333ed4cf0b5db3f9ffcb0da31787f6e44139af5.zip |
Added support for HSQL database. Revised dialects some more.
Moved CREATE TABLE and CREATE INDEX statement generation to the dialect.
Added DECIMAL(length, scale) support.
Improved automatic dialect detection.
Unspecified length string is now CLOB instead of TEXT.
Boolean now maps to BOOLEAN instead of BIT.
Expressions on unmapped fields will throw an IciqlException.
Improved exception reporting.
Diffstat (limited to 'docs/00_index.mkd')
-rw-r--r-- | docs/00_index.mkd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/00_index.mkd b/docs/00_index.mkd index 70048e7..1377db1 100644 --- a/docs/00_index.mkd +++ b/docs/00_index.mkd @@ -36,7 +36,7 @@ select * from products </table>
### Supported Databases
-[H2](http://h2database.com), [MySQL](http://mysql.com)
+[H2 1.3+](http://h2database.com), [HSQLDB 2.2+](http://hsqldb.org)
Support for others is planned and should only require creating a simple "dialect" class.
|