pg_connection_busy --
Get connection is busy or not
Syntax
bool pg_connection_busy ( resource connection )
pg_connection_busy() returns TRUE if the
connection is busy. If it is busy, a previous query is still executing.
If pg_get_result() is called, it will be blocked.
Examples
Example 1. pg_connection_busy() 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 busy php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php pg connection busy syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.