Mercurial > dive4elements > framework
diff artifact-database/src/main/resources/sql/org-h2-driver.properties @ 124:caf9f456f7e3
Added SQL statements to handle users in database.
artifacts/trunk@1348 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Tue, 01 Mar 2011 17:43:16 +0000 |
parents | 8447467cef86 |
children | 2950c6011afa |
line wrap: on
line diff
--- a/artifact-database/src/main/resources/sql/org-h2-driver.properties Tue Mar 01 17:14:10 2011 +0000 +++ b/artifact-database/src/main/resources/sql/org-h2-driver.properties Tue Mar 01 17:43:16 2011 +0000 @@ -22,3 +22,17 @@ 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.gid=DELETE FROM users WHERE id = ? + +users.delete.collections=DELETE FROM collections where owner_id = ? + +users.select.all=SELECT id, gid, name, role FROM users