本文整理汇总了PHP中cubrid_ping函数的典型用法代码示例。如果您正苦于以下问题:PHP cubrid_ping函数的具体用法?PHP cubrid_ping怎么用?PHP cubrid_ping使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了cubrid_ping函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: db_select
/**
* Select the database
*
* @access private called by the base class
* @return resource
*/
function db_select()
{
// In CUBRID there is no need to select a database as the database
// is chosen at the connection time.
// So, to determine if the database is "selected", all we have to
// do is ping the server and return that value.
return cubrid_ping($this->conn_id);
}
示例2: db_select
function db_select()
{
return cubrid_ping($this->conn_id);
}
示例3: reconnect
/**
* Reconnect
*
* Keep / reestablish the db connection if no queries have been
* sent for a length of time exceeding the server's idle timeout
*
* @return void
*/
public function reconnect()
{
if (cubrid_ping($this->conn_id) === FALSE) {
$this->conn_id = FALSE;
}
}
示例4: reconnect
/**
* Reconnect.
*
* Keep / reestablish the db connection if no queries have been
* sent for a length of time exceeding the server's idle timeout
*
* @return void
*/
public function reconnect()
{
if (cubrid_ping($this->conn_id) === false) {
$this->conn_id = false;
}
}