Home > Article > Backend Development > Why Does PDO Prepared Statement Fail to Return Results with LIKE Query?
PDO Prepared Statement in PHP: Issues with MySQL LIKE Queries
PHP's PDO class with MySQL offers a mechanism for executing SQL statements with parameterized queries, improving security and performance. However, users may encounter difficulties when using LIKE queries.
Issue: PDO Prepared Statement not Returning Results with LIKE Query
When attempting to execute a query similar to the following using PDO:
<code class="mysql">SELECT * FROM hs WHERE hs_text LIKE "%searchTerm%"</code>
Users may find that no results are returned.
Solution: Correct Parameterization
The issue lies in the incorrect parameterization of the search term. In PHP, prepared statements use named placeholders, which require different syntax. The correct parameterization for the LIKE query is:
<code class="php">$prep = $dbh->prepare($sql); $ret = $prep->execute(array(':searchTerm' => '%'.$searchTerm.'%'));</code>
Explanation:
Prepared statements separate the data from the query and use placeholders. Therefore, it is not necessary to wrap the search term in double quotes or perform string concatenation.
Other Common Mistakes:
<code class="php">WHERE hs_text LIKE :searchTerm $ret = $prep->execute(array(':searchTerm' => '"%'.$searchTerm.'%"')); // Incorrect</code>
<code class="php">WHERE hs_text LIKE CONCAT(\'%\', ?, \'%\') $ret = $prep->execute(array($searchTerm)); // Incorrect</code>
By using the correct parameterization, you can successfully execute LIKE queries using PDO prepared statements in PHP.
The above is the detailed content of Why Does PDO Prepared Statement Fail to Return Results with LIKE Query?. For more information, please follow other related articles on the PHP Chinese website!