ODBC 函数
在线手册:中文 英文
PHP手册

odbc_num_fields

(PHP 4, PHP 5)

odbc_num_fieldsNumber of columns in a result

说明

int odbc_num_fields ( resource $result_id )

Gets the number of fields (columns) in an ODBC result.

参数

result_id

The result identifier returned by odbc_exec().

返回值

Returns the number of fields, or -1 on error.


ODBC 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Number of columns in a result

用户评论:

udin (02-Oct-2006 10:31)

<?php
$conn
= odbc_connect('MySQL','','');
echo
"Database = " . "MySQL";

$res = odbc_tables($conn);

------------------------------------
Using odbc_num_fields() for showing description of an object table in one database
------------------------------------
while (
odbc_fetch_row($res))
{
   
$jml = odbc_num_fields($res);
    for(
$i=1;$i<=$jml;$i++)
        {
           echo
odbc_field_name($res,$i) . " = " . odbc_result($res,$i);
        }   
   
}

------------------------------------
The 2nd example of using odbc_num_fields(). It retrieves FIELD NAME and FIELD VALUE for each record in CUSTOMER Table
------------------------------------

$sql = 'SELECT * FROM PEGAWAI';
$rs = odbc_exec($conn,$sql);

while (
odbc_fetch_row($rs))
{
     for(
$j=1;$j<=odbc_num_fields($rs);$j++)
         echo
odbc_field_name($rs,$j) . " = " odbc_result($rs,$j) ;

  
}

?>
xdean78@yahoo.com