Thread Perl und SQL
(8 answers)
Opened by joelsok at 2010-07-21 11:31
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: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |