Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 45913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:53:01+00:00 2026-05-10T15:53:01+00:00

This is a bit of a weird one, and I could well be coding

  • 0

This is a bit of a weird one, and I could well be coding this completely wrong – hence why I’ve hit the same error twice in two days, in completely different parts of a script. The code I’m using is below:

     public function findAll( $constraints = array() ) {          // Select all records         $SQL = 'SELECT * FROM ' . $this->tableName;          // See if there's any constraints         if( count( $constraints ) > 0 ) {             $SQL .= ' WHERE ';              foreach( $constraints as $field => $value ) {                 $SQL .= $field . ' = :' . $field . ' AND ';             }          }          // Remove the final AND and prepare the statement         $SQL = substr( $SQL, 0, -5 );                $PDOStatement = $this->PDO->prepare( $SQL );          // Loop through constraints and bind parameters         foreach( $constraints as $field => $value ) {             print 'Binding ' . $field . ' to ' . $value . ' 
'; $PDOStatement->bindParam( $field, $value ); } $PDOStatement->execute(); var_dump($PDOStatement); while ( $results = $PDOStatement->fetch( PDO::FETCH_ASSOC ) ) { var_dump($results); } }

I’m pretty new to using PDO, but basically I’m attempting to pass an array of constraints e.g.

array( 'active' => 1, 'name' => 'James' )

and return all rows from the table

WHERE active = 1 AND name = 'James'

If I use this array, the SQL executed from the first

var_dump( )

is

SELECT * FROM {table} WHERE active = :active AND name = 'James'

– exactly as I expect. The bound parameters prints ‘Binding active to 1’ and ‘Binding name to James’ – exactly as expected. The rows exist in the database, and yet the second

var_dump()

call for $results outputs nothing – i.e. no rows are returned.

If I pass an array of a single constraint, e.g.

array( 'active' => 1 )

, this works perfectly fine. It appears to be whenever multiple constraints are passed that it stops working.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T15:53:02+00:00Added an answer on May 10, 2026 at 3:53 pm

    That’s because bindParam works by binding to a variable, and you are re-using the variable ($value) for multiple values. Try with bindValue instead.

    Or even better yet; Pass the values as an array to execute instead. This makes the statement stateless, which is generally a good thing in programming.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, this one seems to me a bit weird. Any help would be greatly
This is a bit of a weird one. I'm using HTTPClient 4.1.2, and it
Bit of a weird one this. I'm rendering datasets on a map and need
This might seem a bit weird, but since I am new in RoR and
This is a bit of a weird question but, with the functionalities of C++,
This is a bit of a weird request but I am trying to set
This bit of code is taking almost a half second to execute. Could somebody
This is a bit of a weird desire but I am making a matching
Um, this might sound a bit weird. We were having some problems with a
I'm at a bit of a loss on this one ... can't seem to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.