PHP.nl

pg_connection_busy

pg_connection_busy

Get connection is busy or not

bool **pg_connection_busy** PgSql\Connection $connection
determines whether or not a connection

is busy. If it is busy, a previous query is still executing. If is used on the connection, it will be blocked. pg_connection_busy``pg_get_result

connection

Returns true if the connection is busy, false otherwise.

Voorbeeld: example

<?php
  $dbconn = pg_connect("dbname=publisher") or die("Could not connect");
  $bs = pg_connection_busy($dbconn);
  if ($bs) {
      echo 'connection is busy';
  } else {
     echo 'connection is not busy';
  }
?>

pg_connection_status``pg_get_result