请输入您要查询的百科知识:

 

词条 pg_connection_busy
释义

pg_connection_busy

(PHP 4 >= 4.2.0)

pg_connection_busy -- 获知连接是否为忙

说明

bool pg_connection_busy( resource connection)

pg_connection_busy()在此连接状态为忙的时候返回 TRUE。如果连接状态为忙,说明前一个查询仍然在执行。如果调用 pg_get_result()函数的话,则会被锁死。

busy中文翻译忙的

pg_connection_busy() 例子

<?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';

}

?>

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/11 15:17:29