ibase_close

(PHP 5, PHP 7 < 7.4.0)

ibase_close关闭与 InterBase 数据库的连接

说明

ibase_close(资源 $connection_id = null): 布尔值

关闭与 InterBase 数据库的连接,该连接与从 ibase_connect() 返回的连接 ID 相关联。链接上的默认事务将被提交,其他事务将被回滚。

参数

connection_id

ibase_connect() 返回的 InterBase 链接标识符。如果省略,则假定为最后一个打开的链接。

返回值

成功时返回 true,失败时返回 false

参见

添加注释

用户贡献注释 1 条注释

匿名
22 年前
在关闭连接之前,请记住也释放查询结果...

$dbh = ibase_connect($host, $username, $password);
$stmt = 'SELECT * FROM tblname';
$sth = ibase_query($dbh, $stmt);
while ($row = ibase_fetch_object($sth)) {
.............
}
ibase_free_result($sth); // <-------
ibase_close($dbh);
To Top