Hello all,
Have a very annoying problem when coding queries in php to be sent to postgres. I have to type the query specifically like this:
'select "User"."UserName",
"Contact"."Nickname"
from "User"
inner join "Contact"
on "User"."UserID" = "Contact"."UserID"
where "User"."UserID" = 3'
with all of the quoting or it throws an error. Took me a while to figure out this problem since I have not found any documentation online or otherwise, that shows the need to code this way.
Platform,
Mac OS X(dev box), Max OS X Server, php, apache, postgresql
While stuff works, it is really an annoyance to have to quote this way when my friends on their machines dont have these issues.
Thanks for the help,
David