- or download this
package External;
sub dbh { $External::dbh ||= DBI->connect( 'DBI:mysql:test','root',''
+) } #dbh
- or download this
package Foo;
sub new {
...
bless {},__PACKAGE__.'::'.$driver;
}
sub general { same for all database drivers }
- or download this
package Foo::mysql;
@ISA = qw(Foo);
sub specific { stuff specific to MySQL }
- or download this
$dbh->{Driver}{Name}; # gives "mysql"
$dbh->get_info( 17 ); # gives "MySQL"