Skip to content
Advertisement

Problem with binding NULL value to named placeholders with associative array in execute function in PDO

I am trying to construct and execute a delete query when the table_name and the conditional_clauses are passed as parameters in OOP fashion. I am using PDO by wrapping it in a custom wrapper. I am using prepared statements, with named placeholders. In every case, I am passing an associative array inside PDO->execute() function, where the array_keys are the name of the placeholders used and the array_value are the corresponding values to be substituted. I am facing issues only in one case when I want to specify an IS NULL condition with WHERE clause.

Basically, if I want to search for something like:

JavaScript

I am able to dynamically construct a prepared statement which looks like:

JavaScript

And then execute the prepared SQL as:

JavaScript

This is where I am facing the issue. I am getting a fatal error here only when a value is null. And, I want to include checking for IS NULL functionality in my wrapper.

Please note –

  • I want to achieve the purpose without using bindValue() or bindParam() functions.

  • I have turned emulation off (as MySQL can sort all placeholders out
    properly).

  • Using ? as placeholders isn’t an option for me. I’ll have to
    re-design my entire codebase otherwise.

Here’s the code snippet for reference:

JavaScript

Advertisement

Answer

The IS operator can’t be used with an expression. IS NULL and IS NOT NULL are keywords.

You need a test that works with both null and non-null values of :skill. You can use the null-safe equality operator, <=>

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement