 |
ReallyShort.pm
First page Back Continue Last page Overview Graphics
ReallyShort.pm
Create class interface to database table.
01 use strict;
02 package ReallyShort;
03 use base 'Class::DBI::mysql';
04 ReallyShort->set_db('Main',
05 'DBI:mysql:reallyshort',
06 'reallyshort',
07 'password');
08 ReallyShort->set_up_table('link');
09 1;
|
 |
 |