PHP Classes

File: demotable.sql.txt

Recommend this page to a friend!
  Classes of Bob Gombocki   PersistClass   demotable.sql.txt   Download  
File: demotable.sql.txt
Role: Example script
Content type: text/plain
Description: Test data table
Class: PersistClass
DB access wrapper & storing objects in DB tables
Author: By
Last change:
Date: 15 years ago
Size: 219 bytes
 

Contents

Class file image Download
CREATE TABLE TESTTABLE (
    testid int(11) unsigned not NULL auto_increment,
    testcolumn varchar(255) NOT NULL default '',
    othertestcolumn varchar(255) NOT NULL default '',
    PRIMARY KEY (testid)
) ENGINE=InnoDB;