Login   Register  
PHP Classes
elePHPant
Icontem

File: sessions.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of justin fielding  >  DB Sessions  >  sessions.sql  >  Download  
File: sessions.sql
Role: Auxiliary data
Content type: text/plain
Description: SQL to create your sessions table in mySQL
Class: DB Sessions
Manage sessions storing in a database with PEAR DB
Author: By
Last change:
Date: 2004-05-21 06:27
Size: 231 bytes
 

Contents

Class file image Download
CREATE TABLE sessions ( 
   ses_id varchar(32) NOT NULL default '', 
   ses_time int(11) NOT NULL default '0', 
   ses_start int(11) NOT NULL default '0', 
   ses_value text NOT NULL, 
   PRIMARY KEY  (ses_id) 
) TYPE=MyISAM;