请输入您要查询的百科知识:

 

词条 ora_fetch_into
释义

ora_fetch_into

(PHP 3, PHP 4 )

ora_fetch_into -- 将一行数据放入数组

描述

int ora_fetch_into ( resource cursor, array result [, int flags])

取得一行数据并将它放入到一个数组中。参数 flags 有两个标志值:如果设置 ORA_FETCHINTO_NULLS 标志,值为 NULL 的列设置在数组中;如果设置 ORA_FETCHINTO_ASSOC 标志,将创建一个元素由数据库字段命名的数组。

返回所取得行的列数。

ora_fetch_into()例子

<?php

$results = array();

ora_fetch_into($cursor, $results);

echo $results[0];

echo $results[1];

$results = array();

ora_fetch_into($cursor, $results, ORA_FETCHINTO_NULLS|ORA_FETCHINTO_ASSOC);

echo $results['MyColumn'];

?>

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/31 7:27:57