pg_connection_reset

Reset connection (reconnect) (PHP 4 >= 4.2.0)
bool pg_connection_reset ( resource connection )

pg_connection_reset() resets the connection. It is useful for error recovery. Returns TRUE on success or FALSE on failure.

Example 747. pg_connection_reset() example

<?php
   $dbconn
= pg_connect("dbname=publisher") or die("Could not connect");
   
$dbconn2 = pg_connection_reset($dbconn);
   if (
$dbconn2) {
       echo
"reset successful\n";
   }
   else {
       echo
"reset failed\n";
   }
?>

See also pg_connect(), pg_pconnect() and pg_connection_status().

This HTML Help has been published using the chm2web software.