source: Dev/trunk/rdfapi/util/adodb/session/adodb-sessions.oracle.clob.sql @ 12

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: 296 bytes
Line 
1-- $CVSHeader$
2
3DROP TABLE adodb_sessions;
4
5CREATE TABLE sessions (
6        sesskey         CHAR(32)        DEFAULT '' NOT NULL,
7        expiry          INT             DEFAULT 0 NOT NULL,
8        expireref       VARCHAR(64)     DEFAULT '',
9        data            CLOB            DEFAULT '',
10        PRIMARY KEY     (sesskey)
11);
12
13CREATE INDEX ix_expiry ON sessions (expiry);
14
15QUIT;
Note: See TracBrowser for help on using the repository browser.