Last change
on this file since 12 was
12,
checked in by basvannuland, 14 years ago
|
Added RAP RDF API
Added RDF reader writer for save and load survey
|
File size:
329 bytes
|
Line | |
---|
1 | -- $CVSHeader$
|
---|
2 |
|
---|
3 | DROP TABLE adodb_sessions;
|
---|
4 |
|
---|
5 | CREATE TABLE sessions (
|
---|
6 | sesskey CHAR(32) DEFAULT '' NOT NULL,
|
---|
7 | expiry INT DEFAULT 0 NOT NULL,
|
---|
8 | expireref VARCHAR(64) DEFAULT '',
|
---|
9 | data VARCHAR(4000) DEFAULT '',
|
---|
10 | PRIMARY KEY (sesskey),
|
---|
11 | INDEX expiry (expiry)
|
---|
12 | );
|
---|
13 |
|
---|
14 | CREATE INDEX ix_expiry ON sessions (expiry);
|
---|
15 |
|
---|
16 | QUIT;
|
---|
Note: See
TracBrowser
for help on using the repository browser.