I\'m trying to run the following PHP script to do a simple database query:
$db_host = \"localhost\"; $db_name = \"showfinder\"; $username = \"user\"; $passwo
You have to add the schema first e.g.
SELECT * FROM place.user_place;
If you don't want to add that in all queries then try this:
SET search_path TO place;
Now it will works:
SELECT * FROM user_place;