Mercurial > dive4elements > framework
view artifact-database/src/main/resources/sql/org-h2-driver.properties @ 34:9935e1c928de
Bug Fixed: Comparation for outdated Artifacts was Wrong.
artifacts/trunk@86 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Tue, 15 Sep 2009 09:43:57 +0000 |
parents | 251e8904d6c2 |
children | 5e4bc24ea438 |
line wrap: on
line source
artifacts.id.nextval=SELECT NEXTVAL('ARTIFACTS_ID_SEQ') artifacts.insert=INSERT INTO artifacts \ (id, gid, creation, last_access, ttl, data) \ 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, data FROM artifacts WHERE ttl IS NOT NULL \ AND CURRENT_TIMESTAMP - last_access > ttl LIMIT 50 artifacts.select.gid=SELECT id, last_access, ttl, data FROM artifacts WHERE gid = ? artifacts.delete=DELETE FROM artifacts WHERE id = ?