Thread Array aus Arrays (11 answers)
Opened by subsys at 2005-07-21 12:06

renee
 2005-07-21 13:56
#56592 #56592
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Außerdem würde ich
Code: (dl )
1
2
3
4
5
6
7
8
 while(my @tmp = $sth->fetchrow_array)
{
$array[$i][0] = $tmp[0];
$array[$i][1] = $tmp[1];
$array[$i][1] = $tmp[2];
$array[$i][2] = $tmp[3];
$i++;
}
etwas abändern. Hier ist wahrscheinlich ein Fehler drin, weil Du zweimal etwas $array[$i][1] zuweist. Ich würde es so schreiben:
Code: (dl )
1
2
3
4
 while(my @tmp = $sth->fetchrow_array){
$array[$i] = \@tmp;
$i++;
}
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 Array aus Arrays