Funkcje PostgreSQL
PHP Manual

pg_connection_status

(PHP 4 >= 4.2.0, PHP 5)

pg_connection_status Zwraca stan połączenia

Opis

int pg_connection_status ( resource $połączenie )

pg_connection_status() zwraca status podanego połączenia.

Parametry

połączenie

Zasób, połączenie do bazy PostgreSQL.

Zwracane wartości

PGSQL_CONNECTION_OK lub PGSQL_CONNECTION_BAD.

Przykłady

Przykład #1 pg_connection_status() przykład

<?php
  $dbconn 
pg_connect("dbname=publisher") or die("Nie można się połączyć");
  
$stat pg_connection_status($dbconn);
  if (
$stat === PGSQL_CONNECTION_OK) {
      echo 
'Status połączenia ok';
  } else {
      echo 
'Status połączenia bad';
  }    
?>

Zobacz też:


Funkcje PostgreSQL
PHP Manual