Login   Register  
PHP Classes
elePHPant
Icontem

File: create_table.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of ashwin suresh morey  >  Web Tracker  >  create_table.sql  >  Download  
File: create_table.sql
Role: Auxiliary data
Content type: text/plain
Description: sql query to create a table
Class: Web Tracker
Track site user accesses with a MySQL database
Author: By
Last change:
Date: 2005-12-22 04:06
Size: 277 bytes
 

Contents

Class file image Download
CREATE TABLE `tb_ipaddress` (
  `ipID` int(5) NOT NULL auto_increment,
  `ipAddress` varchar(255) NOT NULL default '',
  `postDate` varchar(255) NOT NULL default '',
  `postTime` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`ipID`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;