位置: 编程技术 - 正文

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函数

  • 个体户查账征收怎么交税?
  • 捐赠支出需要什么手续
  • 单位购牙膏牙刷卫生纸怎么做账
  • 其他业务利润包括哪些科目
  • 汇算清缴补缴纳企业所得税会计分录
  • 公允价值变动损益属于什么科目
  • 销售折扣怎么开
  • 冲减产品成本会计分录
  • 以资抵债是利空还是利好
  • 销售货款会计分录怎么做
  • 增值税专用发票电子版
  • 简易征收电费能不能抵扣
  • 加油款可以开专用发票吗
  • 税控盘抵扣增值税怎么做账
  • 手撕发票的税点是多少
  • 为什么发票查验不出
  • 提供物业管理服务的纳税人如何认定
  • 过路费发票可以抵扣增值税吗
  • 应交增值税进项税额转出
  • 固定资产上的配件经常更换
  • 物物交换增值税处理
  • 坏账准备什么时候转回
  • 如何在Windows 11上卸载更新
  • 进项税发票未认证
  • macbook如何安装
  • 装了win8以后不能上网
  • 汇算清缴资产减值损失怎么填
  • 单位向员工出租房屋要交增值税吗
  • win10怎么找应用程序
  • php中??
  • php封装接口
  • 公司为员工发放生日福利
  • 递归 php
  • element-ui dialog
  • 杜拉通河谷中的Nuestra Señora de la Hoz老修道院,西班牙塞哥维亚 (© Arco Images GmbH/Alamy)
  • joomla安装教程
  • 现金流量表补充资料怎么理解
  • vue3使用教程
  • 我用ChatGPT做直播技术选型,卷死了同事
  • vue设置元素不可点击
  • 干货!​如何打造我们自己的“ChatGPT”?| 大佬思辨
  • 收到房租怎么做账务处理
  • 新增办税员需要哪些资料
  • 无形资产摊销怎么计算月摊销额
  • 更改sql server数据库名
  • sql server创建数据表的完整语法
  • js与或运算符
  • 健身房注册公司能注册医疗吗?
  • 个体工商户未年报 经营异常罚款
  • 税控系统技术维护费会计处理280
  • 生产成本帐
  • 上期有留抵进项税额,本期如何申报
  • 年终奖政策,提成怎么算
  • 股本是什么类科目怎么记
  • 安全费用支付
  • 现金日记账的登记规范及要求
  • 哪些账户期末结账后一定无余额
  • 报销餐费属于什么费用
  • 冲暂估成本怎么做分录
  • 资产减值损失可以计入营业外支出吗
  • 失控发票已补税及滞纳金后还有事吗
  • 三栏式明细账适用于原材料吗
  • 会计账户分类是什么意思
  • sqlserver表死锁
  • win7双系统安装教程
  • linux安装c环境
  • window配置在哪
  • ctrl+的作用
  • 笔记本触摸屏无法使用了
  • mac自带功能流程图
  • kernel32在哪个文件夹
  • python如何精确小数
  • python多核并行处理
  • android真机调试闪退
  • vue3 todo
  • 详细解读了
  • Unity3D游戏开发标准教程
  • android环境搭建实验报告
  • 怎么在晋江查找观看记录
  • 党费的缴纳是否扣除所得税
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设