(PHP 4 >= 4.2.0, PHP 5, PHP 7)
Get connection status
int pg_connection_status ( resource $connection )
pg_connection_status() returns the status of the specified connection
.
Parameters:
connection
PostgreSQL database connection resource.
Returns:
PGSQL_CONNECTION_OK
or PGSQL_CONNECTION_BAD
.
Examples:
pg_connection_status() example
1 2 3 4 5 6 7 8 9 | <?php $dbconn = pg_connect( "dbname=publisher" ) or die ( "Could not connect" ); $stat = pg_connection_status( $dbconn ); if ( $stat === PGSQL_CONNECTION_OK) { echo 'Connection status ok' ; } else { echo 'Connection status bad' ; } ?> |
See also:
Please login to continue.