PHP Classes

File: sample.sql

Recommend this page to a friend!
  Classes of Stanislav Shramko   DB_Session   sample.sql   Download  
File: sample.sql
Role: Configuration script
Content type: text/plain
Description: Use this SQL to create the table
Class: DB_Session
Storing session data in DB.
Author: By
Last change:
Date: 21 years ago
Size: 172 bytes
 

Contents

Class file image Download
drop table if exists session_table;

create table session_table (
    sess_id varchar(32) not null default '',
    sess_data blob not null,
    sess_date timestamp
);