I have the following code
$db = pg_Connect("host=localhost dbname=xxx user=xxx password=xxx");
$result = pg_exec($db, $sqlquery);
Whenever pg_exec is executed i get the following error "supplied argument is not a valid PostgreSQL link resource"
I dont understand why Iam getting that error...
Smitha