Mercurial > dive4elements > framework
view artifact-database/src/main/resources/sql/org-h2-driver.properties @ 133:2950c6011afa
Fixed typo in keys.
Removed superfluous identifier in UserFactory.createUser().
Added backend stubs for handling of users.
artifacts/trunk@1358 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 02 Mar 2011 10:07:37 +0000 |
parents | caf9f456f7e3 |
children | 5369582d4fbf |
line wrap: on
line source
artifacts.id.nextval=SELECT NEXTVAL('ARTIFACTS_ID_SEQ') artifacts.insert=INSERT INTO artifacts \ (id, gid, creation, last_access, ttl, factory, data) \ VALUES (?, ?, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, ?, ?, ?) artifacts.update=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP, \ data = ? WHERE id = ? artifacts.touch=UPDATE artifacts SET last_access = CURRENT_TIMESTAMP WHERE id = ? artifacts.outdated=SELECT id, factory, data FROM artifacts WHERE ttl IS NOT NULL \ AND DATEDIFF('MILLISECOND', last_access, CURRENT_TIMESTAMP) > ttl LIMIT 50 artifacts.select.gid=SELECT id, last_access, ttl, factory, data FROM artifacts WHERE gid = ? artifacts.get.id=SELECT id FROM artifacts WHERE gid = ? artifacts.replace=UPDATE artifacts SET \ creation = CURRENT_TIMESTAMP, last_access = CURRENT_TIMESTAMP, \ ttl = ?, factory = ?, data = ? \ WHERE id = ? artifacts.delete=DELETE FROM artifacts WHERE id = ? # USERS users.id.nextval=SELECT NEXTVAL('USERS_ID_SEQ') users.insert=INSERT INTO USERS (id, gid, name, role) VALUES (?, ?, ?, ?) users.select.gid=SELECT id, name, role FROM users WHERE gid = ? users.delete.id=DELETE FROM users WHERE id = ? users.delete.collections=DELETE FROM collections where owner_id = ? users.select.all=SELECT id, gid, name, role FROM users