Log in

View Full Version : query_read error?


subnet_rx
09-08-2007, 10:33 PM
I'm using this code

$outcomes = $db->query_read("SELECT SUM(outcomes) FROM picks_groups");

And getting this error:
Fatal error: Call to a member function query_read() on a non-object

Can I not use SUM with query_read?

Cole2026
09-08-2007, 10:40 PM
Try either

a. Putting the code global $db; before you use it.
b. Use $vbulletin->db instead of $db.

subnet_rx
09-08-2007, 11:05 PM
Didn't work, I'm using this function several times in this script and it hasn't given me any problems till now.

EDIT: Never mind, I put global $db in the actual function and I no longer get the error. I no longer get any output either, but that could be due to some logic problem. Thanks.

Marco van Herwaarden
09-09-2007, 08:06 AM
Chage query_read() to query_first().