hello,
i'm trying to access a database called 'test' with the following call;
$dbhandle = pg_connect(
"dbname=test",
"host=localhost",
"user=one",
"password=****");
i've set up the db 'test' with user one and granted all priveleges to public. i can type 'psql test' and access the db from the command line. when i call the page that holds the pg_connect() command i get the following error;
"database 'test' does not exist in system catalog"
is this a permission problem? how can i troubleshoot this?
thanks.