8 Einträge, 1 Seite |
1
2
3
4
5
my @ergebnisse;
while (my @row = $sth->fetchrow_array())
{
push (@ergebnisse, \@row);
}
1
2
3
ARRAY(0x82191d0)ARRAY(0x8219c80)ARRAY(0x8219cd4)ARRAY(0x8219d28)ARRAY(0x8219d7c)
ARRAY(0x8219dd0)ARRAY(0x8219e24)ARRAY(0x8219e78)ARRAY(0x8219ecc)ARRAY(0x8219f20)
ARRAY(0x8219f74)ARRAY(0x8219fc8)ARRAY(0x821a01c)ARRAY(0x821a974)ARRAY(0x821a9c8)
1
2
3
4
5
6
7
my @ergebnisse;
while (my @row = $sth->fetchrow_array())
{
push @ergebnisse, $_ for (@row);
}
print "$_\n" for (@ergebnisse);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl
use strict;
use warnings;
use DBI;
my $user = '*me*';
my $passwd = '*beep*';
my $db = 'mysql';
my $host = 'localhost';
my $driver = "DBI:mysql:$db:$host";
my $dbh = DBI->connect($driver,$user,$passwd) || die $DBI::errstr;
my $statement = 'SELECT * from filme';
my $sth = $dbh->prepare($statement) || die $DBI::errstr;
$sth->execute() || die $DBI::errstr;
my @ergebnisse;
while (my @row = $sth->fetchrow_array())
{
push @ergebnisse, $_ for (@row);
}
print "$_\n" for (@ergebnisse);
$dbh->disconnect();
1
2
3
while (my @row = $sth->fetchrow_array()) {
push @ergebnisse,[@row];#Ein Annonymes Array als Element an @ergebnisse anhängen
}
1
2
3
for my $row (@ergebnisse) {
print join(" - ",@$row),"\n"; #Derefenziere $row als Array mit dem @
}
8 Einträge, 1 Seite |