PHP Classes

File: SQL File

Recommend this page to a friend!
  Classes of Guilherme Blanco   DcSessionManager   ???   Download  
File: ???
Role: Auxiliary data
Content type: text/plain
Description: MySQL Table
Class: DcSessionManager
Manage sessions using a MySQL table to store data
Author: By
Last change:
Date: 21 years ago
Size: 351 bytes
 

 

Contents

Class file image Download
CREATE TABLE `sessHandler` ( `sHashId` CHAR( 32 ) NOT NULL , `sSessId` CHAR( 32 ) NOT NULL , `sValues` TEXT, `dDateRegistered` DATETIME NOT NULL , `nExpire` BIGINT UNSIGNED NOT NULL , `bSaveSession` INT DEFAULT '0' NOT NULL , PRIMARY KEY ( `sHashId` , `sSessId` ) , INDEX ( `dDateRegistered` , `nExpire` ) );