logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

Re: Some code to contribute for .NET 2.0: msg#00025

Subject: Re: Some code to contribute for .NET 2.0
""Alessandro Petrelli"" <petrelli-tuXb/Z829FWGzLJY+7CQzQ@xxxxxxxxxxxxxxxx> ha 
scritto nel messaggio 
news:djo9cv$keq$1@xxxxxxxxxxxxxxxxx

> Class code below my signature.

Ops forgot the script :-)

SET SQL DIALECT 3;

SET NAMES NONE;

CREATE DATABASE '127.0.0.1:C:\db\SESSION_STATE.FDB'
USER 'SYSDBA' PASSWORD 'masterkey'
PAGE_SIZE 4096
DEFAULT CHARACTER SET NONE;

CREATE TABLE SESSIONS (
    SESSION_ID        VARCHAR(80) NOT NULL,
    APPLICATION_NAME  VARCHAR(100) NOT NULL,
    CREATED           TIMESTAMP,
    EXPIRES           TIMESTAMP,
    LOCK_DATE         TIMESTAMP,
    LOCK_ID           INTEGER,
    TIMEOUT           INTEGER,
    LOCKED            SMALLINT,
    SESSION_ITEMS     BLOB SUB_TYPE 1 SEGMENT SIZE 4096,
    FLAGS             INTEGER
);

CREATE UNIQUE INDEX SESSIONS_IDX1 ON SESSIONS (SESSION_ID, 
APPLICATION_NAME); 




-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information


<Prev in Thread] Current Thread [Next in Thread>