aboutsummaryrefslogtreecommitdiffstats
path: root/docs/05_releases.mkd
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2012-08-20 09:59:00 -0400
committerJames Moger <james.moger@gmail.com>2012-08-20 09:59:00 -0400
commit56e975461d9a041e91dfaa0e7c9642d659bd523b (patch)
treefd8639ad40e8e991d24a147df7f250aa6c5daad5 /docs/05_releases.mkd
parent68bdf6dd006a7e5449b433e0945c5e63130dabd5 (diff)
downloadiciql-56e975461d9a041e91dfaa0e7c9642d659bd523b.tar.gz
iciql-56e975461d9a041e91dfaa0e7c9642d659bd523b.zip
Use savepoints for all bulk ops (insert all, update all, delete all)
Diffstat (limited to 'docs/05_releases.mkd')
-rw-r--r--docs/05_releases.mkd4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/05_releases.mkd b/docs/05_releases.mkd
index 79543aa..c31a8b8 100644
--- a/docs/05_releases.mkd
+++ b/docs/05_releases.mkd
@@ -4,6 +4,10 @@
**%VERSION%** ([zip](http://code.google.com/p/iciql/downloads/detail?name=%ZIP%)|[jar](http://code.google.com/p/iciql/downloads/detail?name=%JAR%)) &nbsp; *released %BUILDDATE%*
+- All bulk operations (insert all, update all, delete all) now use JDBC savepoints to ensure atomicity of the transaction
+
+**1.0.0** &nbsp; *released 2012-07-14*
+
- Issue CREATE TABLE and CREATE INDEX statements once per-db instance/table-mapping
- Fixed bug in using 0L primitive values in where clauses. These were confused with the COUNT(*) function. (Github/kc5nra,issue 5)
- Added support for single column subquery *select name, address from user_table where user_id in (select user_id from invoice table where paid = false)*