(PHP 4 >= 4.2.0, PHP 5)
pg_connection_status() gibt den Status der angegebenen connection zurück.
PostgreSQL Verbindungskennung.
PGSQL_CONNECTION_OK oder PGSQL_CONNECTION_BAD.
Beispiel 1. pg_connection_status() Beispiel
<?php $dbconn = pg_connect("dbname=publisher") or die("Konnte keine Verbindung aufbauen"); $stat = pg_connection_status($dbconn); if ($stat === 0) { echo 'Verbindungsstatus ok'; } else { echo 'Verbindungsstatus bad'; } ?>
Hosting by: Hurra Communications GmbHGenerated: 2007-01-26 17:57:07