view artifact-database/src/main/resources/sql/org-h2-driver.properties @ 31:c4d85a8532d1

Artifact.out() is now called with an java.io.Outpustream instead of producing bytes. artifacts/trunk@77 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sat, 12 Sep 2009 10:45:28 +0000
parents 88972c6daa4f
children c2d53bd30ab8
line wrap: on
line source
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, 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 = ?

http://dive4elements.wald.intevation.org