So, I'm new to using postgresql, and I'm having some issues getting data out using PHP. I am able to connect to the database, and I've printed my query string out and run it in pgAdmin III, and it works fine, but I do not get a result set back.
function colorCode($county)
{
$query = "select \"1HR\" from \"Flood_Advisor\" where \"name\" ilike '".$county."%'";
$result = pg_query($my_pg, $query) ;//or die ("failed to get results ".pg_last_error());
if(!$result)
{ echo "failed to get rows<br>"; }
else
{echo "got rows<br>";}
$resultArray = pg_fetch_array($result, 0) ;//or die ("no rows");
$stuff = $resultArray['1HR'];
echo $query." ".$county." is ".$stuff."<br>";
}
colorCode("Augusta");
for output I get:
---------------------------------------
connected
failed to get rows
select "1HR" from "Flood_Advisor" where "name" ilike 'Augusta%' Augusta is
---------------------------------------
So, it seems I am connecting to postresql, but fail to get a result, the query spit out does return a result though. Any help is greatly appreciated.
I had it uncommented out before, but both pg_result_error() and pg_last_error() do not return anything. pg_num_rows() also does not return anything. I have also tried using pg_send_query() and pg_get_result() with the same result. I have also tried using pg_ping() after failing to get a result set to make sure I still had a connection to the database. That ping was successful.
Are you able to run tha query manually not using PHP? If it works then we know the problem is with the PHP and if it doesn't work there is a problem with the DB.
Yes, I am able to run the query fine manually, I have been printing them out and trying them through the query tool in pgAdmin. Before I put it into this function I had a hard coded query that did the exact same thing and worked....well obviously not the exact same thing or I wouldn't be having issues this time around, but I only changed the query, now I cannot get a result set. I am new to postgresql, until recently I've stuck to mySQL, but because this requires some spacial data to be stored I'm trying to use postgresql for the whole thing. I was hoping it was something real silly I missed being new to postgresql.
Bookmarks