From 30c62483c97b6495a62ef15bf38e55578ab95563 Mon Sep 17 00:00:00 2001 From: James Moger Date: Mon, 20 Aug 2012 10:11:08 -0400 Subject: [PATCH] Updated unit-tested databases --- .classpath | 10 +++++----- README.markdown | 8 ++++---- docs/00_index.mkd | 8 +++++--- src/com/iciql/build/Build.java | 14 +++++++------- 4 files changed, 21 insertions(+), 19 deletions(-) diff --git a/.classpath b/.classpath index e142a59..1181733 100644 --- a/.classpath +++ b/.classpath @@ -24,20 +24,20 @@ - + - + - + - + - + diff --git a/README.markdown b/README.markdown index 82265e3..110ca0c 100644 --- a/README.markdown +++ b/README.markdown @@ -5,7 +5,7 @@ iciql **is**... - a model-based, database access wrapper for JDBC - for modest database schemas and basic statement generation - for those who want to write code, instead of SQL, using IDE completion and compile-time type-safety -- small (125KB) with no runtime dependencies +- small (175KB with debug symbols) with no runtime dependencies - pronounced *icicle* (although it could be French: *ici ql* - here query language) - a friendly fork of the H2 [JaQu](http://h2database.com/html/jaqu.html) project @@ -17,9 +17,9 @@ iciql **is not**... Supported Databases (Unit-Tested) ------- -- [H2](http://h2database.com) 1.3.162 -- [HSQLDB](http://hsqldb.org) 2.2.6 -- [Derby](http://db.apache.org/derby) 10.7.1.1 & 10.8.1.2 +- [H2](http://h2database.com) 1.3.168 +- [HSQLDB](http://hsqldb.org) 2.2.8 +- [Derby](http://db.apache.org/derby) 10.9.1.0 - [MySQL](http://mysql.com) 5.0.51b - [PostgreSQL](http://postgresql.org) 9.0 diff --git a/docs/00_index.mkd b/docs/00_index.mkd index da912ac..c8fdc65 100644 --- a/docs/00_index.mkd +++ b/docs/00_index.mkd @@ -36,9 +36,9 @@ select * from products ### Supported Databases (Unit-Tested) -- [H2](http://h2database.com) 1.3.162 -- [HSQLDB](http://hsqldb.org) 2.2.6 -- [Derby](http://db.apache.org/derby) 10.7.1.1 & 10.8.1.2 +- [H2](http://h2database.com) 1.3.168 +- [HSQLDB](http://hsqldb.org) 2.2.8 +- [Derby](http://db.apache.org/derby) 10.9.1.0 - [MySQL](http://mysql.com) 5.0.51b - [PostgreSQL](http://postgresql.org) 9.0 @@ -50,6 +50,8 @@ iciql requires a Java 6 Runtime Environment (JRE) or a Java 6 Development Kit (J ### Current Release +iciql is undergoing rapid development so api and configuration are subject to change from release to release + **%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%* issues, binaries, & source @ [Google Code][googlecode]
diff --git a/src/com/iciql/build/Build.java b/src/com/iciql/build/Build.java index ca80e68..7ce229c 100644 --- a/src/com/iciql/build/Build.java +++ b/src/com/iciql/build/Build.java @@ -176,15 +176,15 @@ public class Build { "219a3540f3b27d7cc3b1d91d6ea046cd8723290e", "0bb50eec177acf0e94d58e0cf07262fe5164331d", "c7adc475ca40c288c93054e0f4fe58f3a98c0cb5"); - public static final MavenObject H2 = new MavenObject("com/h2database", "h2", "1.3.162", - "fb381c2cb2805c7135cde33045955fb6e6fa94fd", "ea37eef7637816ef89b25608704d232f763d3875", - "7e4a113fa18ce5016e95e8ff319561f39d2b0f5a"); + public static final MavenObject H2 = new MavenObject("com/h2database", "h2", "1.3.168", + "eb32936a239d95220f5b2d2973a7b17372f98b54", "61da28f8c48d07c099fc78d72c6152b84d89b4ca", + "724ff8347553919e703a369a856713a8e7ef4fac"); - public static final MavenObject HSQLDB = new MavenObject("org/hsqldb", "hsqldb", "2.2.6", - "cf35e8222e4af7aa9d7423b6c1f7a68b6d543867", "", ""); + public static final MavenObject HSQLDB = new MavenObject("org/hsqldb", "hsqldb", "2.2.8", + "8231a3ff71ba5889f9e2d01ce13503cbdd4038e9", "", ""); - public static final MavenObject DERBY = new MavenObject("org/apache/derby", "derby", "10.8.1.2", - "2f8717d96eafe3eef3de445ba653f142d54ddab1", "", ""); + public static final MavenObject DERBY = new MavenObject("org/apache/derby", "derby", "10.9.1.0", + "4538cf5564ab3c262eec65c55fdb13965625589c", "", ""); public static final MavenObject MYSQL = new MavenObject("mysql", "mysql-connector-java", "5.1.15", "0fbc80454d27cc65f3addfa516707e9f8e60c3eb", "", ""); -- 2.39.5