Thread anfängerfrage zu perl und mysql (10 answers)
Opened by CyrusTV at 2008-04-08 11:11

renee
 2008-04-09 13:45
#108128 #108128
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Wie wäre es, das alles in einer Abfrage zu "erschlagen"?

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
# Befehl für zweite Tabelle, mit ?-Notation (siehe auch Wiki-Artikel)
my $statement = qq~SELECT tabelle2.mac, tabelle1.zeit, tabelle2.zeitspalte FROM tabelle1, tabelle2 WHERE tabelle1.mac = tabelle2.mac~;

my $sth = $data2->prepare( $statement ) or die $data2->errstr;

# für die Debug-Ausgabe
use Data::Dumper;

while( my @row = $sth->fetchrow_array){
         print sprintf "%s -> %s - %s\n", @row;
}
$sth->finish();
(ungetestet)
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 anfängerfrage zu perl und mysql