Thread unblessed reference
(4 answers)
Opened by silver345 at 2011-06-07 08:44
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/ |