位置: 编程技术 - 正文
推荐整理分享PHP:oci_num_fields()的用法_Oracle函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 5, PECL OCI8 >= 1.1.0)
oci_num_fields — 返回结果列的数目
说明 int oci_num_fields ( resource $statement )oci_num_fields() 返回 statement 中的列的数目。
Example #1 oci_num_fields() 例子
<?phpecho"<pre>n";$conn=oci_connect("scott","tiger");$stmt=oci_parse($conn,"select*fromemp");oci_execute($stmt);while(oci_fetch($stmt)){echo"n";$ncols=oci_num_fields($stmt);for($i=1;$i<=$ncols;$i++){$column_name=oci_field_name($stmt,$i);$column_value=oci_result($stmt,$i);echo$column_name.':'.$column_value."n";}echo"n";}oci_free_statement($stmt);oci_close($conn);echo"</pre>";?>oci_num_fields() 在出错时返回 FALSE。
Note:
在 PHP 5.0.0 之前的版本必须使用 ocinumcols() 替代本函数。该函数名仍然可用,为向下兼容作为 oci_num_fields() 的别名。不过其已被废弃,不推荐使用。
PHP:oci_result()的用法_Oracle函数 oci_result(PHP5,PECLOCI8=1.1.0)oci_result返回所取得行中字段的值说明mixedoci_result(resource$statement,mixed$field)oci_result()返回由oci_fetch()所取得的当前行中field字段的数
PHP:oci_password_change()的用法_Oracle函数 oci_password_change(PHP5,PECLOCI8=1.1.0)oci_password_change修改Oracle用户的密码说明booloci_password_change(resource$connection,string$username,string$old_password,string$new_password)resource
PHP:oci_parse()的用法_Oracle函数 oci_parse(PHP5,PECLOCI8=1.1.0)oci_parse配置Oracle语句预备执行说明resourceoci_parse(resource$connection,string$query)oci_parse()在connection上配置query并返回语句标识符以用于oci
标签: PHP:oci_num_fields()的用法_Oracle函数
本文链接地址:https://www.jiuchutong.com/biancheng/275238.html 转载请保留说明!友情链接: 武汉网站建设