- or download this
package TArtLib;
use strict;
use vars qw($dbh);
...
sub dbh {
return $dbh;
}
- or download this
package TArt::Editor;
use TArtLib;
...
my $dbh = TArtLib->dbh;
- or download this
sub dbh {
unless ($dbh) {
# connect to the database now.
}
return $dbh;
}