Thread DBI & Postgres - SQL Abfrage schlägt fehl (6 answers)
Opened by slicer at 2011-07-04 19:55

moritz
 2011-07-04 20:27
#150138 #150138
User since
2007-05-11
923 Artikel
HausmeisterIn
[Homepage]
user image
Probier mal das hier:


Code: (dl )
1
2
3
4
5
6
7
8
9
10
$tabelle = "person";
$spalte = "name";
$wert = "Hans";

$tabelle = $dbh->quote_identifier($tabelle);
$spalte = $dbh->quote_identifier($spalte);

$sql = "INSERT INTO $tabelle ($spalte) VALUES (?)";

$dbh->do($sql, undef, $wert);


Das Fragezeichen ? ist ein sogenannter Placeholder, und generell empfehlenswert.

View full thread DBI & Postgres - SQL Abfrage schlägt fehl