位置: 编程技术 - 正文

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

编辑:rootadmin
oci_close

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

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

(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 occ)

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_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:oci_fetch_all()的用法_Oracle函数 oci_fetch_all(PHP5,PECLOCI8=1.1.0)oci_fetch_all获取结果数据的所有行到一个数组说明intoci_fetch_all(resource$statement,array&$output[,int$skip[,int$maxrows[,int$flags]]])oci_fetch_all()

PHP:oci_execute()的用法_Oracle函数 oci_execute(PHP5,PECLOCI8=1.1.0)oci_execute执行一条语句说明booloci_execute(resource$stmt[,int$mode])oci_execute()执行一条之前被解析过的语句(见oci_parse())。可选参数mode

标签: php occ

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

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

下一篇:PHP:oci_connect()的用法_Oracle函数(php odbc)

  • 企业的其他业务收入包括哪些
  • 纳税等级是指什么意思
  • 公司税后利润怎么算
  • 软件产品增值税超税负即征即退
  • 商品进销差价在贷方代表什么
  • 小规模无进项怎么补税
  • 增值税扣费
  • 记账凭证如何填写明细科目
  • 银行入息是入几个月的
  • 资产负债表上的资产是原值还是净值
  • 进口增值税的计税依据
  • 发票过期了还能抵扣吗
  • 采购商品的运费计入成本的会计分录
  • 上期计提的费用是什么
  • 销售亏损原因分析范文
  • 招标代理公司转让
  • 第三方代缴社保能查到原单位吗
  • 房地产开发企业销售自行开发的房地产项目
  • 房地产企业用电计入什么科目
  • 联营商品如何做账
  • 买了两个月社保能用多少医药费
  • 营业外支出可以抵扣进项税吗
  • 筹建期如何界定
  • 收到打款认证会计分录
  • 企业所得表怎么填写
  • vmware运行win10很卡怎么解决
  • ajax+json
  • 其他综合收益和其他收益的区别
  • 个体工商户税收标准2023年
  • 格里戈里耶奈尔尤伯夫
  • 工商年报中营业费用包括
  • php实现的常规正态分解
  • php事务特性
  • 零申报的账怎么做
  • 土地款什么时候进在建工程
  • vue为什么监听不到对象内部属性
  • 进项逾期未认证怎么办
  • 数据挖掘 实战
  • 扩散模型和gan的区别
  • 增值税报销是什么意思
  • 工程结算期末有余额吗?
  • mongodb skip limit
  • 党建工作经费使用流程
  • 研发企业税率是多少
  • 增值税买票卖票
  • 生育津贴能个人申请吗 个人怎么领取生育津贴
  • 工会经费多久缴纳一次
  • 个体户需要实缴吗
  • 进项税额转出期限是多久
  • 买方的现金折扣会计分录
  • 政府补助的房子叫什么
  • 税务会计账务处理一般方法有哪些
  • 纳税评估补缴的增值税影响所得税吗
  • 新建厂房房产证办理流程
  • 溢价发行股票的交易费用
  • 应交的教育费附加通过什么科目核算
  • 其他应收款包括哪些会计科目
  • 汽车修理厂利润
  • phpstudy中phpmyadmin无法访问
  • centos which
  • sybase ase数据库用户名密码
  • mac mail邮件本地存储路径
  • hpzts04.exe是什么进程 有什么作用 hpzts04进程查询
  • w10 xbox
  • win7 host文件路径
  • win10更新只能暂停35天
  • linux怎么在桌面创建文件
  • 万向节锁到底是什么
  • opengl画直线
  • linux百度网盘安装
  • python怎么爬
  • nodejs搭建网站
  • javascript规范
  • jquery怎么修改样式
  • js 模板框架
  • php jquery教程
  • 广西公安厅有几个处长
  • 小规模纳税人进口环节的增值税税率
  • 查询如何查询
  • 税控防伪清单
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设