- or download this
$dbh2->do("INSERT INTO PerlTest (Postcode,street_column,streetCount) V
+ALUES (?,?,?)", undef, '', $mystreet, 0);
- or download this
$dbh2->do("INSERT INTO PerlTest (Postcode,street_column,streetCount) V
+ALUES ('',?,0)", undef, $mystreet);
- or download this
my $sth = $dbh2->prepare("INSERT INTO PerlTest (Postcode,street_column
+,streetCount) VALUES (?,?,?)");
...
$sth->execute('', $mystreet, 0);
- or download this
my $sth = $dbh2->prepare("INSERT INTO PerlTest (Postcode,street_column
+,streetCount) VALUES ('',?,0)");
...
$sth->execute($mystreet);