- or download this
sub init
{
...
$self->connect( ) || return;
return $self;
}
- or download this
$self->init($config);
- or download this
sub new {
my $class = shift;
...
|| $class->error($self->error());
}
- or download this
@$self{ keys %$config } = values %$config;