位置: 编程技术 - 正文

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

  • 计提附加税税会计分录
  • 所得税费用的计提
  • 应收账款和应付账款的关系
  • 职业年金单位缴费方式
  • 增票未抵扣丢失怎么处理
  • 交通补贴税前扣除标准
  • 30万免税超过30万
  • 政府机关车辆拍卖
  • 动产租赁和不动产哪个好
  • 收到虚开的普票已经入账怎么调账
  • 工业企业如何进行设备的选购管理
  • 销售货物的价外费用有哪些
  • 出售商标使用权收入计入什么科目
  • 劳务费个税申报税率
  • 增值税普通纳税人税率
  • 作为一名新手
  • 红字发票如果开多了下个月能进行抵扣么?
  • 收到的红字发票报税的时候怎么填
  • 个人技术投资入什么科目
  • 增值税转型后入账价值
  • 法定代表人的个人债务会执行公司财产么
  • 拿库存商品抵债怎么做账
  • win11开机黑屏进不去桌面
  • 企业投资收益如何做账
  • 表彰比例如何确定
  • win10通知怎么打开
  • 空调应该计入什么科目
  • 苹果电脑怎么切换中英文
  • 结转待抵扣
  • kali linux怎么修改用户名
  • 销售折让怎么开票
  • PHP isset()与empty()的使用区别详解
  • vue项目页面跳转
  • 数据库管理系统能对数据库中的数据进行查询
  • 固定资产类别有哪些
  • 会计在账本上怎么记账
  • node.js最新版本
  • sql server 2008设置角色
  • 税款所属期止是怎么写
  • 水利基金申报表在哪找
  • 财务报表编制要求包含
  • 小微企业所得税税率
  • linux登录root用户登录
  • 权益法下公允价值变动计入其他综合收益
  • 增资扩股和股权转让一样吗
  • 金融企业有
  • 记账凭证核算形式
  • 开发票的销售收入正规的做账如何做?
  • 进口代理费取费标准
  • 进口增值税已付什么意思
  • 财产租赁所得是指
  • 法人能去税务局开个人发票吗
  • 上月有留抵税额本月怎么申报
  • 如何办理公司注册地址变更
  • centos rpc
  • php 访问数据库
  • 在sql查询中使用where子句指定的是
  • ms17010补丁怎么安装
  • linux系统设置ntp同步
  • centos如何查询ip
  • linux网络编程宋敬彬pdf
  • win1020h2正式版
  • xp调出输入法
  • 手机更新升级版本下载
  • win10小娜怎么用不了
  • linux bas
  • 在linux系统中获取帮助信息的命令为
  • 2016年首个熊猫电站是哪一个
  • css div模糊
  • linux 部署
  • unity shader ao
  • Linux命令行和shell脚本编程大全
  • 安卓大作业小游戏五子棋
  • javascript入门书
  • android studio操作指南
  • 纪检委是干什么工作的能管理税务管理局吗
  • 大连税务稽查局魏禾简历
  • 四川省地方税务局公告2018年第3号
  • 政府发放奖金给企业怎么入账
  • 佛山电动摩托车能上牌吗
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设