| From: | Greg Flanders <gflan(at)avalon(dot)net> |
|---|---|
| To: | pgsql-interfaces(at)postgresql(dot)org |
| Subject: | Using Pg's error message |
| Date: | 1998-08-25 23:49:42 |
| Message-ID: | Pine.LNX.3.96.980825184334.13126A-100000@darwin.xdsl.avalon.net |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-interfaces |
I'm using the Pg package that came with 6.3, and I'm having problems using the
error codes generated by $result->resultStatus. Basically I just want to know
if a query came back null before I try to use it. Here's the code
$result = $conn2->exec("select totalusage from usage where name =
\'$username\'\;");
if ($result->resultStatus == PGRES_EMPTY_QUERY)
{
print "BAD VOODOO!\n";
}
The error message I continue to receive on empty queries is
PQgetvalue: There is no row 0 in the query results. The highest numbered row
is -1.
Can anyone tell me what I'm doing wrong here, and point me in the right
direction to using the error codes correctly?
thanks a ton!
greg
please cc any replies to gflan(at)avalon(dot)net as I don't subscribe to thist list.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | John J. Boris, Sr. | 1998-08-26 03:16:07 | new odbc fails |
| Previous Message | Leslie Mikesell | 1998-08-25 21:55:41 | excel vs. money data type? |