Help for this page

Select Code to Download


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