PHP Classes

File: database.sql

Recommend this page to a friend!
  Classes of Aziz S. Hussain   Email Scraper   database.sql   Download  
File: database.sql
Role: Auxiliary data
Content type: text/plain
Description: Database Dump
Class: Email Scraper
Crawl pages and scrape e-mail addresses into MySQL
Author: By
Last change:
Date: 14 years ago
Size: 561 bytes
 

Contents

Class file image Download
CREATE TABLE IF NOT EXISTS `emaillist` ( `emailadd` varchar(255) NOT NULL, PRIMARY KEY (`emailadd`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='List of all gotten emails'; CREATE TABLE IF NOT EXISTS `finishedurls` ( `urlname` varchar(255) NOT NULL, PRIMARY KEY (`urlname`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='List of finished urls'; CREATE TABLE IF NOT EXISTS `workingurls` ( `urlname` varchar(255) NOT NULL, PRIMARY KEY (`urlname`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='List of current working urls';