位置: 编程技术 - 正文

PHP:oci_close()的用法_Oracle函数(php options)

编辑:rootadmin
oci_close

推荐整理分享PHP:oci_close()的用法_Oracle函数(php options),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:php ob_start,php options,php occ,php oci,php opache,php close,php oci8,php oci,内容如对您有帮助,希望把文章链接给更多的朋友!

(PHP 5, PECL OCI8 >= 1.1.0)

oci_close — 关闭 Oracle 连接

说明 bool oci_close ( resource $connection )

oci_close() 将 Oracle 连接 connection 关闭。

Note:

自版本 1.1 起 oci_close() 正确关闭 Oracle 连接。使用 oci8.old_oci_close_semantics 选项来恢复本函数的旧行为。

成功时返回 TRUE, 或者在失败时返回 FALSE。

Note:

在 PHP 5.0.0 之前的版本必须使用 ocilogoff() 替代本函数。该函数名仍然可用,为向下兼容作为 oci_close() 的别名。不过其已被废弃,不推荐使用。

参数

connection

An Oracle connection identifier returned by oci_connect(), oci_pconnect(), or oci_new_connect().

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE。

范例

Example #1 Closing a connection

Resources associated with a connection should be closed to ensure the underlying database connection is properly terminated and the database resources are released.

<?php$conn=oci_connect('hr','welcome','localhost/XE');if(!$conn){$e=oci_error();trigger_error(htmlentities($e['message'],ENT_QUOTES),E_USER_ERROR);}$stid=oci_parse($conn,'SELECT*FROMdepartments');$r=oci_execute($stid);oci_fetch_all($stid,$res);var_dump($res);//Freethestatementidentifierwhenclosingtheconnectionoci_free_statement($stid);oci_close($conn);?> PHP:oci_close()的用法_Oracle函数(php options)

Example #2 Database connections are not closed until all references are closed

The internal refcount of a connection identifier must be zero before the underlying connection to the database is closed.

<?php$conn=oci_connect('hr','welcome','localhost/XE');if(!$conn){$e=oci_error();trigger_error(htmlentities($e['message'],ENT_QUOTES),E_USER_ERROR);}$stid=oci_parse($conn,'SELECT*FROMdepartments');//thisincreasestherefcounton$connoci_execute($stid);oci_fetch_all($stid,$res);var_dump($res);oci_close($conn);//$connisnolongusableinthescriptbuttheunderlyingdatabase//connectionisstillheldopenuntil$stidisfreed.var_dump($conn);//printsNULL//WhilePHPsleeps,queryingtheOracleV$SESSIONviewina//terminalwindowwillshowthatthedatabaseuserisstillconnected.sleep();//When$stidisfreed,thedatabaseconnectionisphysicallyclosedoci_free_statement($stid);//WhilePHPsleeps,queryingtheOracleV$SESSIONviewina//terminalwindowwillshowthatthedatabaseuserhasdisconnected.sleep();?>

Example #3 Closing a connection opened more than once

When database credentials are reused, both connections must be closed before the underlying database connection is closed.

<?php$conn1=oci_connect('hr','welcome','localhost/XE');//Usingthesamecredentialsreusesthesameunderlyingdatabaseconnection//Anyuncommittedchangesdoneon$conn1willbevisiblein$conn2$conn2=oci_connect('hr','welcome','localhost/XE');//WhilePHPsleeps,queryingtheOracleV$SESSIONviewina//terminalwindowwillshowthatonlyonedatabaseuserisconnected.sleep();oci_close($conn1);//doesn'tclosetheunderlyingdatabaseconnectionvar_dump($conn1);//printsNULLbecausethevariable$conn1isnolongerusablevar_dump($conn2);//displaysthat$conn2isstillavalidconnectionresource?>

Example #4 Connections are closed when variables go out of scope

When all variables referencing a connection go out of scope and are freed by PHP, a rollback occurs (if necessary) and the underlying connection to the database is closed.

<?phpfunctionmyfunc(){$conn=oci_connect('hr','hrpwd','localhost/XE');if(!$conn){$e=oci_error();trigger_error(htmlentities($e['message'],ENT_QUOTES),E_USER_ERROR);}$stid=oci_parse($conn,'UPDATEmytabSETid=');oci_execute($stid,OCI_NO_AUTO_COMMIT);return"Finished";}$r=myfunc();//Atthispointarollbackoccurredandtheunderlyingdatabaseconnectionwasreleased.print$r;//displaysthefunctionreturnvalue"Finished"?> 注释

Note:

Variables that have a dependency on the connection identifier, such as statement identifiers returned by oci_parse(), must also be freed before the underlying database connection is closed.

Note:

Prior to version PHP 5.1.2 (PECL OCI8 1.1) oci_close() was a no-op. In more recent versions it correctly closes the Oracle connection. Use oci8.old_oci_close_semantics option to restore old behavior of this function.

Note:

The oci_close() function does not close the underlying database connections created with oci_pconnect().

Note:

In PHP versions before 5.0.0 you must use ocilogoff() instead. 在当前版本中,旧的函数名还可以被使用,但已经被废弃并不建议使用。

参见

oci_connect() - 建立一个到 Oracle 服务器的连接 oci_free_statement() - 释放关联于语句或游标的所有资源

PHP:oci_commit()的用法_Oracle函数 oci_commit(PHP5,PECLOCI8=1.1.0)oci_commit提交未执行的事务处理说明booloci_commit(resource$connection)oci_commit()将Oracle连接connection上正在运行的事务中所有未执行的语句

PHP:oci_close()的用法_Oracle函数 oci_close(PHP5,PECLOCI8=1.1.0)oci_close关闭Oracle连接说明booloci_close(resource$connection)oci_close()将Oracle连接connection关闭。Note:自版本1.1起oci_close()正确关闭Oracle连接。

PHP:oci_connect()的用法_Oracle函数 oci_connect(PHP5,PECLOCI8=1.1.0)oci_connect建立一个到Oracle服务器的连接说明resourceoci_connect(string$username,string$password[,string$db[,string$charset[,int$session_mode]]])oci_connect(

标签: php options

本文链接地址:https://www.jiuchutong.com/biancheng/281113.html 转载请保留说明!

上一篇:PHP:oci_fetch_assoc()的用法_Oracle函数

下一篇:PHP:oci_commit()的用法_Oracle函数

  • 应收账款平均余额包括应收票据吗
  • 核定征收的计算方法有哪些
  • 如何核销财政票据的发票
  • 委托加工设备
  • 职工福利费计提比例一般是多少
  • 账本印花税如何申报缴纳
  • 个体户没有三证合一,年检
  • 不动产增值税总结
  • 宣传活动物资
  • 购买融资租赁资产
  • 怎么判断要不要交水利基金
  • 有哪些不同类型的金融机构
  • 施工企业资产负债率
  • 小规模纳税人一个月能开多少税票
  • win10消费者版本和商业版本有什么区别
  • 最新双色球开奖号码
  • 买水果送什么赠品
  • 购货方销售退回怎么做账
  • 喜加一平台
  • 商票 银行贴现
  • 股权转让的不仅是权利还有义务
  • PHP:zip_entry_close()的用法_Zip函数
  • 销售食品分录
  • 现金盘盈后的财务分析
  • 科技财政支出的意义
  • PHP:gettimeofday()的用法_Date Time函数
  • 购买材料结转成本的会计分录
  • 短视频小程序源码
  • 会计核算方法体系构成
  • css经典面试题
  • 减免增值税附加税也一起减免吗
  • 新准则预付账款计算公式
  • 出口抵扣进项的设备免税依据
  • 前端bs是什么
  • php支付接口开发
  • php跨域提交表单
  • 怎样利用 getnext 命令检索未知对象?
  • 联营企业和合营企业是什么意思
  • 应交税费应交增值税销项税额
  • 土地使用税退税的会计分录
  • 发票打印错误如何修改
  • 土地增值税扣除项目税金包括哪些
  • 初学access收获心得
  • 长期股权投资减值准备是什么科目
  • 个体户查账征收个人所得税税率
  • 上一年度所得税忘记计提了怎么办
  • 公司的房租发票怎么记账
  • 企业注销留抵税额怎么处理 最新
  • 旅游业差额开票的票据可以累计一季度吗
  • 预算会计年末如何结账
  • 社保税款所属期申报错了要紧吗?
  • 赠送油卡需要代理吗
  • 贷款应提准备的资料包括
  • 企业应当在
  • 在途物资入库怎么记账
  • 会计账户分类是什么意思
  • 拍卖公司没开发票能退吗
  • sql语句实现分页
  • mysql 5.7启动
  • xp系统电脑设置在哪
  • 怎么进入bios设置界面win10
  • linux 命令大全
  • win8共享文件
  • ubuntu源代码
  • 文件夹删不掉显示另一个程序打开
  • win7宽带连接改成无线网络
  • win10软件报错
  • perl常用函数
  • 使用文字输入
  • vue3 todo
  • php和js的区别和联系
  • 超详细的!!!2023澳门六开彩
  • python如何查询函数用法
  • 从零开始学公文写作
  • javascript教程
  • js复制字符串的方法
  • js设置页面的scrolltop
  • 重庆电子税务局网页版登录
  • 食药监局下午几点上班
  • 红星新闻河南郑州
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设