PHP.nl

pg_connection_status

pg_connection_status

Get connection status

int **pg_connection_status** PgSql\Connection $connection
returns the status of

the specified . pg_connection_status``connection

connection

 or 
.

PGSQL_CONNECTION_OK``PGSQL_CONNECTION_BAD

Voorbeeld: example

<?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';
  }    
?>

pg_connection_busy