pg_connection_status

Get connection status (PHP 4 >= 4.2.0)
int pg_connection_status ( resource connection )

pg_connection_status() returns a connection status. Possible statuses are PGSQL_CONNECTION_OK and PGSQL_CONNECTION_BAD.

Example 748. pg_connection_status() example

<?php
   $dbconn
= pg_connect("dbname=publisher") or die("Could not connect");
   
$stat = pg_connection_status($dbconn);
   echo
'connection_status: '.$stat;
?>

See also pg_connection_busy().

This HTML Help has been published using the chm2web software.