Mercurial > dive4elements > framework
diff artifact-database/src/main/resources/sql/org-h2-driver.properties @ 14:0d16d1bb2df0
Initial checkin of artigact persistents back by database.
artifacts/trunk@29 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Mon, 07 Sep 2009 08:41:05 +0000 |
parents | |
children | 88972c6daa4f |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/artifact-database/src/main/resources/sql/org-h2-driver.properties Mon Sep 07 08:41:05 2009 +0000 @@ -0,0 +1,19 @@ +artifacts.id.nextval=SELECT NEXTVAL('ARTIFACTS_ID_SEQ') + +artifacts.insert=INSERT INTO artifacts \ + (id, gid, creation, last_access, ttl) \ + VALUES (?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, ?) + +artifacts.update=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP, \ + data = ? WHERE id = ? + +artifacts.touch=UPDATE last_access = CURRENT_TIMESTAMP WHERE id = ? + +artifacts.outdated=SELECT id FROM artifacts WHERE ttl IS NOT NULL \ + AND CURRENT_TIMESTAMP - last_access > ttl + +artifacts.select.id=SELECT gid, last_access, ttl, data FROM artifacts WHERE id = ? + +artifacts.select.gid=SELECT id, last_access, ttl, data FROM artifacts WHERE gid = ? + +artifacts.delete=DELETE FROM artifacts WHERE id = ?