- or download this
INSERT member (last, first)
VALUES(NULL, "chromatic");
- or download this
$last = "NULL";
$first = "chromatic";
$query =
...
VALUES ($last, $first)
};
$rows = $dbh->do($query);
- or download this
$last = $dbh->quote("NULL");
$first = $dbh->quote("chromatic");
- or download this
$query =
qq {
INSERT member (last, first)
VALUES (?, ?)
};
$rows = $dbh->do($query, undef, $last, $first);