Thread Perl und SQL (8 answers)
Opened by joelsok at 2010-07-21 11:31

pq
 2010-07-21 11:40
#139998 #139998
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
bitteschön:
Code (perl): (dl )
1
2
3
4
5
6
7
my $sql = "UPDATE PC_Probleme SET Stoerung = CONCAT(Stoerung, ?)";
my $sth = $dbh->prepare($sql);
$sth->execute(<<'EOM');
Seriennummer: GSHUZ5H09HJ7K00
Betriebsystem: Windows
Name: Schmidt
EOM
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Perl und SQL