How do I insert NULL values using PDO?

Nacho picture Nacho · Sep 8, 2009 · Viewed 101.7k times · Source

I'm using this code and I'm beyond frustration:

try {
    $dbh = new PDO('mysql:dbname=' . DB . ';host=' . HOST, USER, PASS);
    $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    $dbh->setAttribute(PDO::MYSQL_ATTR_INIT_COMMAND, "SET NAMES 'utf8'");
}
catch(PDOException $e)
{
    ...
}
$stmt = $dbh->prepare('INSERT INTO table(v1, v2, ...) VALUES(:v1, :v2, ...)');
$stmt->bindParam(':v1', PDO::PARAM_NULL); // --> Here's the problem

PDO::PARAM_NULL, null, '', all of them fail and throw this error:

Fatal error: Cannot pass parameter 2 by reference in /opt/...

Answer

JasonWoof picture JasonWoof · Sep 8, 2009

I'm just learning PDO, but I think you need to use bindValue, not bindParam

bindParam takes a variable, to reference, and doesn't pull in a value at the time of calling bindParam. I found this in a comment on the php docs:

bindValue(':param', null, PDO::PARAM_INT);

EDIT: P.S. You may be tempted to do this bindValue(':param', null, PDO::PARAM_NULL); but it did not work for everybody (thank you Will Shaver for reporting.)