Jump to content

Named placeholder in PDO?


Mr Chris

Recommended Posts

Hello all,

 

This is driving me potty.  I'm trying to run a query in PDO that a pass to a function.

 

function myFunction ($dbc,$the_date) {
  echo $the_date;
  $QUERY = $dbc->query("SELECT * from table WHERE the_date = ':the_date' ORDER BY id DESC");  
  $QUERY->bindParam(':the_date', $the_date);
  $QUERY->setFetchMode(PDO::FETCH_ASSOC);  
//etc...
}

 

Now as you can see I echo $the_date and it shows, but when the query runs the named placeholder does not seem to work.  When I take the WHERE clause out it works fine, so I know it's not an issue there.

 

Any thoughts?

 

Thanks

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.