Thread unblessed reference (4 answers)
Opened by silver345 at 2011-06-07 08:44

renee
 2011-06-07 08:59
#149487 #149487
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Das eval brauchst Du nicht...

Code (perl): (dl )
1
2
3
4
5
6
sub closeDatabase {
  foreach my $sth (@toClose) {
    ${$sth}->finish();
  }
  $dbh->disconnect;
}


oder Du speicherst nicht die Referenzen auf die Variable... sondern

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
my @toClose = ();

push @toClose, $SqlSthTools;

sub closeDatabase {
  foreach my $sth (@toClose) {
    $sth->finish();
  }
  $dbh->disconnect;
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread unblessed reference