PHP
downloads | documentation | faq | getting help | mailing lists | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

pg_connection_status> <pg_connection_busy
Last updated: Fri, 14 Nov 2008

view this page in

pg_connection_reset

(PHP 4 >= 4.2.0, PHP 5)

pg_connection_reset Reinicia uma conexão (reconecta)

Descrição

bool pg_connection_reset ( resource $connection )

pg_connection_reset() reinicia uma conexão. É útil para recuperação de erros. Retorna TRUE em caso de sucesso ou FALSE em falhas.

Exemplo #1 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";
      }
  
?>

Veja também pg_connect(), pg_pconnect() e pg_connection_status().



add a note add a note User Contributed Notes
pg_connection_reset
There are no user contributed notes for this page.

pg_connection_status> <pg_connection_busy
Last updated: Fri, 14 Nov 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites