PHP Classes

File: sample_table.sql

Recommend this page to a friend!
  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: 15 years ago
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;