PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

db2_num_rows> <db2_next_result
Last updated: Sat, 24 Mar 2007

view this page in

db2_num_fields

(PECL ibm_db2:1.0-1.5.1)

db2_num_fields — Returns the number of fields contained in a result set

Popis

int db2_num_fields ( resource $stmt )

Returns the number of fields contained in a result set. This is most useful for handling the result sets returned by dynamically generated queries, or for result sets returned by stored procedures, where your application cannot otherwise know how to retrieve and use the results.

Seznam parametrů

stmt

A valid statement resource containing a result set.

Návratové hodnoty

Returns an integer value representing the number of fields in the result set associated with the specified statement resource. Returns FALSE if the statement resource is not a valid input value.

Příklady

Příklad 736. Retrieving the number of fields in a result set

The following example demonstrates how to retrieve the number of fields returned in a result set.

<?php

$sql
= "SELECT id, name, breed, weight FROM animals ORDER BY breed";
$stmt = db2_prepare($conn, $sql);
db2_execute($stmt, $sql);
$columns = db2_num_fields($stmt);

echo
"There are {$columns} columns in the result set.";
?>

Výše uvedený příklad vypíše:


There are 4 columns in the result set.

    

Viz také

db2_execute()
db2_field_display_size()
db2_field_name()
db2_field_num()
db2_field_precision()
db2_field_scale()
db2_field_type()
db2_field_width()



add a note add a note User Contributed Notes
db2_num_fields
There are no user contributed notes for this page.

db2_num_rows> <db2_next_result
Last updated: Sat, 24 Mar 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites