Mercurial > dive4elements > framework
comparison artifact-database/src/main/resources/sql/org-h2-driver.properties @ 32:c2d53bd30ab8
Re-factored artifact API for better integration of background processing.
artifacts/trunk@78 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Sun, 13 Sep 2009 14:50:53 +0000 |
parents | 88972c6daa4f |
children | 251e8904d6c2 |
comparison
equal
deleted
inserted
replaced
31:c4d85a8532d1 | 32:c2d53bd30ab8 |
---|---|
1 artifacts.id.nextval=SELECT NEXTVAL('ARTIFACTS_ID_SEQ') | 1 artifacts.id.nextval=SELECT NEXTVAL('ARTIFACTS_ID_SEQ') |
2 | 2 |
3 artifacts.insert=INSERT INTO artifacts \ | 3 artifacts.insert=INSERT INTO artifacts \ |
4 (id, gid, creation, last_access, ttl) \ | 4 (id, gid, creation, last_access, ttl, data) \ |
5 VALUES (?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, ?) | 5 VALUES (?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, ?, data) |
6 | 6 |
7 artifacts.update=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP, \ | 7 artifacts.update=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP, \ |
8 data = ? WHERE id = ? | 8 data = ? WHERE id = ? |
9 | 9 |
10 artifacts.touch=UPDATE last_access = CURRENT_TIMESTAMP WHERE id = ? | 10 artifacts.touch=UPDATE last_access = CURRENT_TIMESTAMP WHERE id = ? |