http://www.perlmonks.org?node_id=998044


in reply to A Tutorial for CGI::Application

Hi, Can you please also include CREATE script for the database? Thanks, Alexey.

Replies are listed 'Best First'.
Re^2: A Tutorial for CGI::Application
by bradcathey (Prior) on Oct 14, 2012 at 21:27 UTC

    Pretty basic MySQL

    CREATE TABLE `contacts` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) DEFAULT NULL, `address` varchar(64) DEFAULT NULL, `city` varchar(64) DEFAULT NULL, `more_info` tinyint unsigned, `created_on` datetime DEFAULT NULL, `updated_on` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 |
    —Brad
    "The important work of moving the world forward does not wait to be done by perfect men." George Eliot