downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<pg_connection_resetpg_convert>
Last updated: Thu, 26 Jun 2008

pg_connection_status

(PHP 4 >= 4.2.0, PHP 5)

pg_connection_status — Get connection status

Description

int pg_connection_status ( resource $connection )

pg_connection_status() returns the status of the specified connection .

Parameters

connection

PostgreSQL database connection resource.

Return Values

PGSQL_CONNECTION_OK or PGSQL_CONNECTION_BAD.

Examples

Example #1 pg_connection_status() example

<?php
  $dbconn
= pg_connect("dbname=publisher") or die("Could not connect");
 
$stat = pg_connection_status($dbconn);
  if (
$stat === PGSQL_CONNECTION_OK) {
     echo
'Connection status ok';
  } else {
     echo
'Connection status bad';
  }   
?>



add a noteadd a note User Contributed Notes
Get connection status
There are no user contributed notes for this page.




<pg_connection_resetpg_convert>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs