I\'m trying to run the following PHP script to do a simple database query:
$db_host = \"localhost\"; $db_name = \"showfinder\"; $username = \"user\"; $passwo
Put the dbname parameter in your connection string. It works for me while everything else failed.
Also when doing the select, specify the your_schema.your_table like this:
your_schema
your_table
select * from my_schema.your_table