Mercurial > dive4elements > framework
diff artifact-database/src/main/resources/sql/org-postgresql-driver.properties @ 38:93edc04f3a10
Added postgresql support.
artifacts/trunk@104 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Fri, 18 Sep 2009 09:34:14 +0000 |
parents | |
children | 5e4bc24ea438 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/artifact-database/src/main/resources/sql/org-postgresql-driver.properties Fri Sep 18 09:34:14 2009 +0000 @@ -0,0 +1,17 @@ +artifacts.id.nextval=SELECT nextval('ARTIFACTS_ID_SEQ') + +artifacts.insert=INSERT INTO artifacts \ + (id, gid, creation, last_access, ttl, data) \ + VALUES (?, ?::uuid, 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, data FROM artifacts WHERE ttl IS NOT NULL \ + AND CURRENT_TIMESTAMP - last_access > (ttl || ' microseconds')::interval LIMIT 50 + +artifacts.select.gid=SELECT id, last_access, ttl, data FROM artifacts WHERE gid = ?::uuid + +artifacts.delete=DELETE FROM artifacts WHERE id = ?