diff options
author | James Moger <james.moger@gmail.com> | 2011-08-16 15:32:56 -0400 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2011-08-16 15:32:56 -0400 |
commit | d95e16170d063c0b74d04e6636e8fddbfa120689 (patch) | |
tree | a8157992ef14cb8f4392b847fbc8892cb30245d5 /docs | |
parent | 8193609af00aa9529ed7b3090b5739c4e95b12c4 (diff) | |
download | iciql-d95e16170d063c0b74d04e6636e8fddbfa120689.tar.gz iciql-d95e16170d063c0b74d04e6636e8fddbfa120689.zip |
Finished MySQL dialect; v5.0.51b 100% tested. Added Db.dropTable(T)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/00_index.mkd | 6 | ||||
-rw-r--r-- | docs/03_performance.mkd | 2 | ||||
-rw-r--r-- | docs/05_releases.mkd | 11 |
3 files changed, 11 insertions, 8 deletions
diff --git a/docs/00_index.mkd b/docs/00_index.mkd index b3e8cbf..daf9c42 100644 --- a/docs/00_index.mkd +++ b/docs/00_index.mkd @@ -39,11 +39,9 @@ select * from products - [H2](http://h2database.com) 1.3.159
- [HSQLDB](http://hsqldb.org) 2.2.4
- [Derby](http://db.apache.org/derby) 10.7.1.1 & 10.8.1.2
+- [MySQL](http://mysql.com) 5.0.51b
-### Partially Supported Databases (not Unit-Tested)
-- [MySQL](http://mysql.com)
-
-Support for others is planned and may only require creating a simple "dialect" class.
+Support for others is possible and may only require creating a simple "dialect" class.
### Java Runtime Requirement
diff --git a/docs/03_performance.mkd b/docs/03_performance.mkd index a8922b7..7df050a 100644 --- a/docs/03_performance.mkd +++ b/docs/03_performance.mkd @@ -9,7 +9,7 @@ Performance of iciql statement generation is not currently benchmarked. ### iciql+database performance comparison
-The following data was generated by running the iciql test suite. The suite is almost completely single-threaded. All databases are run in embedded *memory-only* mode through a JDBC connection. Since the suite is running in memory-only mode, disk IO bottlenecks should be removed from the equation and the results should be measuring raw statement processing.
+The following data was generated by running the iciql test suite. The suite is almost completely single-threaded. All Java databases are run in embedded *memory-only* mode through a JDBC connection.
<pre>
%DBPERFORMANCE%
diff --git a/docs/05_releases.mkd b/docs/05_releases.mkd index 91ef18f..8e0dfd6 100644 --- a/docs/05_releases.mkd +++ b/docs/05_releases.mkd @@ -6,13 +6,18 @@ **%VERSION%** ([zip](http://code.google.com/p/iciql/downloads/detail?name=%ZIP%)|[jar](http://code.google.com/p/iciql/downloads/detail?name=%JAR%)) *released %BUILDDATE%*
-- Disabled 2 concurrency unit tests since I believe they are flawed and do not yield reproducible results
+- Finished MySQL dialect implementation. MySQL 5.0.51b passes 100% of tests.
+- Added Db.dropTable(T) method
+
+### Older Releases
+
+**0.6.6** *released 2011-08-15*
+
+- Disabled two concurrency unit tests since I believe they are flawed and do not yield reproducible results
- Added Derby database dialect. Derby 10.7.1.1 and 10.8.1.2 pass 100% of tests.
- Implemented HSQL MERGE syntax. HSQL 2.2.4 fails 1 test which is a known [bug in HSQL](https://sourceforge.net/tracker/?func=detail&aid=3390047&group_id=23316&atid=378131)
- Updated to H2 1.3.159
-### Older Releases
-
**0.6.5** *released 2011-08-12*
- fixed failure of db.delete(PrimitiveModel) and db.update(PrimitiveModel)
|