in reply to Re: pops, shifts and eqs
in thread pops, shifts and eqs

no -> there a method like $pass->text or $pass->value

I dont know how

Barry Carlyon barry@barrycarlyon.co.uk

Replies are listed 'Best First'.
Re^3: pops, shifts and eqs
by barrycarlyon (Beadle) on Apr 17, 2006 at 21:25 UTC

    package LSRfm::DBI; use strict; use warnings; use base qw(Class::DBI); use Apache::Reload; use LSRfm::Config; my $config = $LSRfm::Config::DATABASE; LSRfm::DBI->connection("dbi:mysql:host=$config->{host};database=$confi +g->{name}", $config->{dbuser}, $config->{dbpasswd}); 1;

    Barry Carlyon barry@barrycarlyon.co.uk
      $pass->password should do it then .. See your LSRfm::Database::Show_Passwords source, your LSRfm::DBI source, and the Class::DBI docs more more info.