comparison artifact-database/src/main/resources/sql/org-h2-driver.properties @ 41:5e4bc24ea438

Made serilization more flexible. DB update required!!! Fixed problem with touching artifacts in database. artifacts/trunk@119 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 23 Sep 2009 16:55:12 +0000
parents 251e8904d6c2
children b8516aa3d8a1
comparison
equal deleted inserted replaced
40:af22d4de275c 41:5e4bc24ea438
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, data) \ 4 (id, gid, creation, last_access, ttl, factory, data) \
5 VALUES (?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, ?, ?) 5 VALUES (?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, ?, ?, ?)
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 artifacts SET last_access = CURRENT_TIMESTAMP WHERE id = ?
11 11
12 artifacts.outdated=SELECT id, data FROM artifacts WHERE ttl IS NOT NULL \ 12 artifacts.outdated=SELECT id, factory, data FROM artifacts WHERE ttl IS NOT NULL \
13 AND CURRENT_TIMESTAMP - last_access > ttl LIMIT 50 13 AND CURRENT_TIMESTAMP - last_access > ttl LIMIT 50
14 14
15 artifacts.select.gid=SELECT id, last_access, ttl, data FROM artifacts WHERE gid = ? 15 artifacts.select.gid=SELECT id, last_access, ttl, factory, data FROM artifacts WHERE gid = ?
16 16
17 artifacts.delete=DELETE FROM artifacts WHERE id = ? 17 artifacts.delete=DELETE FROM artifacts WHERE id = ?

http://dive4elements.wald.intevation.org