Login   Register  
PHP Classes
elePHPant
Icontem

File: sample_table.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Matt Saragusa  >  A Simple MySQL Class  >  sample_table.sql  >  Download  
File: sample_table.sql
Role: Auxiliary data
Content type: text/plain
Description: SQL to create mysql Table
Class: A Simple MySQL Class
Execute MySQL queries from argument values
Author: By
Last change:
Date: 2009-04-12 21:33
Size: 231 bytes
 

Contents

Class file image Download
CREATE TABLE `Items` (
  `itemID` int(11) NOT NULL auto_increment,
  `name` varchar(32) NOT NULL,
  `description` tinytext NOT NULL,
  `catID` int(11) NOT NULL,
  PRIMARY KEY  (`itemID`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;