spb: Stephen Bennett <stephen@freenode.net>
+Squeeks <squeek@cpan.org>
+
sszabo: Stephan Szabo <sszabo@bigpanda.com>
teejay : Aaron Trevena <teejay@cpan.org>
insertdb.pl
- #!/usr/bin/perl -w
+ #!/usr/bin/perl
- use MyDatabase::Main;
use strict;
+ use warnings;
+
+ use MyDatabase::Main;
my $schema = MyDatabase::Main->connect('dbi:SQLite:db/example.db');
testdb.pl:
- #!/usr/bin/perl -w
+ #!/usr/bin/perl
- use MyDatabase::Main;
use strict;
+ use warnings;
+
+ use MyDatabase::Main;
my $schema = MyDatabase::Main->connect('dbi:SQLite:db/example.db');
# for other DSNs, e.g. MySQL, see the perldoc for the relevant dbd