pg_last_error() doesn't return connection errors
| От | Frank Naude |
|---|---|
| Тема | pg_last_error() doesn't return connection errors |
| Дата | |
| Msg-id | AANLkTikUeGfaaOwsDav2GyD=tq7__70jQT_G4KhQbA8n@mail.gmail.com обсуждение исходный текст |
| Ответы |
Re: pg_last_error() doesn't return connection errors
|
| Список | pgsql-php |
Hi,
I can successfully connect to PostgreSQL (pgsql extension). However,
when I make a deliberate mistake, I'm unable to capture the connection
error with pg_last_error() as one would with the *_last_error()
functions of other database extensions.
Here is an example:
<?php
$c = pg_connect('host=127.0.0.1 user=postgres password=xxx
dbname=yyy') or var_dump( pg_last_error() );
?>
The following output (with warnings) is returned:
Warning: pg_connect() [function.pg-connect]: Unable to connect to
PostgreSQL server: FATAL: password authentication failed for user
"postgres" in ..
Warning: pg_last_error() [function.pg-last-error]: No PostgreSQL link
opened yet in ...
bool(false)
One would expect pg_last_error() to return "password authentication
failed" instead of FALSE!
Best regards.
Frank
В списке pgsql-php по дате отправления: