Login   Register  
PHP Classes
elePHPant
Icontem

File: demotable.sql.txt

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2009-08-07 04:37
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;