Home > Backend Development > PHP Tutorial > Why Am I Getting a \'SQLSTATE[HY093]: Invalid parameter number\' Error in My PHP PDO Code?

Why Am I Getting a \'SQLSTATE[HY093]: Invalid parameter number\' Error in My PHP PDO Code?

Barbara Streisand
Release: 2024-11-24 15:50:17
Original
930 people have browsed it

Why Am I Getting a

Error: Invalid Parameter Number in PHP PDOException

When attempting to execute the add_persist function, developers may encounter the error "SQLSTATE[HY093]: Invalid parameter number." This error stems from an incorrect parameter binding within the SQL query.

In the provided code, the $sql statement attempts to update a row in the persist table by executing the INSERT and ON DUPLICATE KEY UPDATE commands. However, there is a discrepancy in the parameter bindings within the $stm->execute call. Specifically, the :hash parameter appears twice, but according to PDO documentation, each unique parameter marker must be bound only once to a value.

To resolve this issue, the $sql query should be modified to include a distinct parameter marker for each value being passed, as follows:

$sql = "INSERT INTO persist (user_id, hash, expire)
        VALUES (:user_id, :hash, :expire)
        ON DUPLICATE KEY UPDATE hash=:hash2";
Copy after login

Additionally, the $stm->execute call should include bindings for both the :hash and :hash2 parameters:

$stm->execute(
    array(":user_id" => $user_id, 
          ":hash" => $hash, 
          ":expire" => $future,
          ":hash2" => $hash)
);
Copy after login

By addressing this parameter binding issue, the add_persist function will correctly execute the SQL query without triggering the "Invalid parameter number" error.

The above is the detailed content of Why Am I Getting a \'SQLSTATE[HY093]: Invalid parameter number\' Error in My PHP PDO Code?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template