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

search for in the

pg_connection_status> <pg_connection_busy
Last updated: Sun, 25 Nov 2007

view this page in

pg_connection_reset

(PHP 4 >= 4.2.0, PHP 5)

pg_connection_reset — Reset connection (reconnect)

설명

bool pg_connection_reset ( resource $connection )

pg_connection_reset() resets the connection. It is useful for error recovery.

매개변수

connection

PostgreSQL database connection resource.

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

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



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: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites