From 25e92e1b20d58b523c8a1e2090241552bc4489cd Mon Sep 17 00:00:00 2001 From: James Moger Date: Fri, 27 Jan 2012 15:53:00 -0500 Subject: Fixed index out of bounds exception in parsing a default string value --- docs/05_releases.mkd | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs/05_releases.mkd') diff --git a/docs/05_releases.mkd b/docs/05_releases.mkd index fc90b54..934e710 100644 --- a/docs/05_releases.mkd +++ b/docs/05_releases.mkd @@ -6,6 +6,10 @@ **%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%* +- Fixed default String value bug where a default empty string threw an IndexOutOfBounds exception + +**0.7.9**   *released 2012-01-24* + - Added toParameter() option for SET commands and allow generating parameterized UPDATE statements
String q = db.from(t).set(t.timestamp).toParameter().where(t.id).is(5).toSQL();
db.executeUpdate(q, new Date()); -- cgit v1.2.3