位置: 编程技术 - 正文

PHP:oci_fetch_object()的用法_Oracle函数

编辑:rootadmin
oci_fetch_object

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

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

(PHP 5, PECL OCI8 >= 1.1.0)

oci_fetch_object — Returns the next row from a query as an object

说明 object oci_fetch_object ( resource $statement )

Returns an object containing the next result-set row of a query. Each attribute of the object corresponds to a column of the row. This function is typically called in a loop until it returns FALSE, indicating no more rows exist.

要获取 OCI8扩展进行数据类型映射的细节,请参见驱动所支持的数据类型。

参数

statement

有效的 OCI8 报表标识符由 oci_parse() 创建,被 oci_execute()或 REF CURSOR statement 标识执行。

返回值

Returns an object. Each attribute of the object corresponds to a column of the row. If there are no more rows in the statement then FALSE is returned.

Any LOB columns are returned as LOB descriptors.

PHP:oci_fetch_object()的用法_Oracle函数

DATE columns are returned as strings formatted to the current date format. The default format can be changed with Oracle environment variables such as NLS_LANG or by a previously executed ALTER SESSION SET NLS_DATE_FORMAT command.

Oracle&#;s default, non-case sensitive column names will have uppercase attribute names. Case-sensitive column names will have attribute names using the exact column case. Use var_dump() on the result object to verify the appropriate case for attribute access.

Attribute values will be NULL for any NULL data fields.

范例

Example #1 oci_fetch_object() example

<?php/*Beforerunning,createthetable:CREATETABLEmytab(idNUMBER,descriptionVARCHAR2());INSERTINTOmytab(id,description)values(1,'FishandChips');COMMIT;*/$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,'SELECTid,descriptionFROMmytab');oci_execute($stid);while(($row=oci_fetch_object($stid))!=false){//UseuppercaseattributenamesforeachstandardOraclecolumnecho$row->ID."<br>n";echo$row->DESCRIPTION."<br>n";}//

Example #2 oci_fetch_object() with case sensitive column names

<?php/*Beforerunning,createthetablewithacasesensitivecolumnname:CREATETABLEmytab(idNUMBER,"MyDescription"VARCHAR2());INSERTINTOmytab(id,"MyDescription")values(1,'IcedCoffee');COMMIT;*/$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,'SELECTid,"MyDescription"FROMmytab');oci_execute($stid);while(($row=oci_fetch_object($stid))!=false){//UseuppercaseattributenamesforeachstandardOraclecolumnecho$row->ID."<br>n";//Usetheexactcaseforthecasesensitivecolumnnameecho$row->MyDescription."<br>n";}//

Example #3 oci_fetch_object() with LOBs

<?php/*Beforerunning,createthetable:CREATETABLEmytab(idNUMBER,descriptionCLOB);INSERTINTOmytab(id,description)values(1,'Averylongstring');COMMIT;*/$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,'SELECTid,descriptionFROMmytab');oci_execute($stid);while(($row=oci_fetch_object($stid))!=false){echo$row->ID."<br>n";//ThefollowingwilloutputthefirstbytesfromDESCRIPTIONecho$row->DESCRIPTION->read()."<br>n";}//

参见

oci_fetch() - Fetches the next row into result-buffer oci_fetch_all() - 获取结果数据的所有行到一个数组 oci_fetch_assoc() - Returns the next row from a query as an associative array oci_fetch_array() - Returns the next row from a query as an associative or numeric array oci_fetch_row() - Returns the next row from a query as a numeric array

PHP:oci_fetch_row()的用法_Oracle函数 oci_fetch_row(PHP5,PECLOCI8=1.1.0)oci_fetch_rowReturnsthenextrowfromaqueryasanumericarray说明arrayoci_fetch_row(resource$statement)Returnsanumericallyindexedarraycontainingthenextresult-setrowofaque

PHP:oci_fetch_assoc()的用法_Oracle函数 oci_fetch_assoc(PHP5,PECLOCI8=1.1.0)oci_fetch_assocReturnsthenextrowfromaqueryasanassociativearray说明arrayoci_fetch_assoc(resource$statement)Returnsanassociativearraycontainingthenextresult-setrowo

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_fetch_object()的用法_Oracle函数

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

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

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

  • 企业为员工缴纳公积金的通知
  • 什么是小规模纳税人税率
  • 企业所得税如何做分录
  • 居民个人所得计算怎么做
  • 发票能减多少税
  • 水电费进项税额怎么抵扣
  • 坏账准备和信用账户区别
  • 小企业今年怎么过
  • 年度纳税总额的时间怎么计算
  • 认缴制投资方的账务处理
  • 事业单位固定资产管理办法
  • 代订机票被骗可以追回吗
  • 城建税的征税范围是什么
  • 提供教育服务免征增值税文件
  • 土增税清算地下室怎么扣除
  • 房地产开发公司怎么做账
  • 代发农民工工资承诺书
  • 防伪税控维护费会计分录
  • 收到投资款需要什么原始凭证
  • 股权转让印花税税率
  • 在建期间费用怎么处理?
  • 增值纳税人类别怎么选
  • 预付专利转让费计入什么科目?
  • 期初存货余额在哪张表里
  • 专项应付款怎么转固定资产
  • 挂靠别人的资质进行房屋建筑会计怎样做账?
  • 政府返还的资金如何处理
  • 购入土地建厂房要交的税
  • 在window10中可以使用什么窗口
  • 财务都干些什么
  • 一键ghost软件怎么用
  • 误餐费怎么入账
  • rtlrack.exe - rtlrack是什么进程 有什么用
  • win10右键菜单管理在哪打开
  • linux root 命令
  • 使用过的固定资产出售,怎么处理
  • 纺织企业成本核算表
  • 企业常用的成本核算方法有哪些
  • 开发商卖房子要交多少营业税
  • 股权激励的账务如何处理
  • 非关联企业借款利息扣除
  • 微信手机充值怎么自定义金额
  • vue模块拖拽
  • uniapp开发总结
  • 股东的投资款能转为借款
  • 收到联营企业分红怎么做
  • db2常用操作语句
  • sqlserver的replace
  • 零星采购入什么科目
  • 普通发票可以抵扣吗
  • 将购进药品销售给药品生产企业或药品经营企业的是
  • 收到项目资本金怎么入账
  • 清算资金往来借贷方什么意思
  • 应收账款转回坏账怎么办
  • 行政事业单位固定资产入账标准最新规定
  • 个人社保缴纳会不会自动扣款
  • 总分类账封面封地和启用页的区别
  • 注册资本可以随便填吗
  • mysql建索引有哪些策略和原则
  • win8的应用商店
  • 重装系统后win7无法连接到网络
  • windows10x预览版
  • 怎么使用linux
  • linux常用网络工具
  • win7断电后无法正常启动
  • win8使用教程和技能
  • 下载手游网
  • css实现弹窗
  • javascriptcsdn
  • getmac/v
  • jquery自定义插件
  • linux 服务器重启
  • unity mul函数
  • javascript中继承
  • python类属性和类方法
  • 如何加强部门联动协作
  • 点击电子税务局里的税务数字账户不跳转怎么回事
  • 工匠称号有什么待遇?
  • 税务异常处理
  • 税收优惠政策有什么公司受影响
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

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

    友情链接: 武汉网站建设