Skip to content
Advertisement

Error when upgrading MySQL to PDO: Call to a member function fetch() on a non-object

I’m just learning PHP and MySQL, and I’m trying to put in a comment system. I found this website: http://www.evanpetersen.com/item/php-and-mysql-recursion.html which seems to have what I want. However, it uses MySQL, and I need PDO. I tried to alter the code to make it work, but I’m encountering an error. Here is the original code:

JavaScript

And here is my altered version:

JavaScript

The problem is, I must have altered it incorrectly (not surprising, since I don’t really know what I’m doing yet), because it throws this error: Fatal error: Call to a member function fetch() on a non-object for the line while ($ticketRow = $ticket->fetch(PDO::FETCH_ASSOC)) . Frankly, I don’t even know how to begin to address this problem because most of this is still gibberish to me. What do I do?

Advertisement

Answer

  • Always prepare the query
  • Check for the returned values
  • Print errors
  • $nextTicket = $ticket->fetch($thread) is really strange
  • If you query 3 times the same query you doing it wrong.
  • Enable error mode
  • no need for recursion, just loop through the records.

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