db2_result

(no version information, might be only in CVS)

db2_result --  Returns a single column from a row in the result set

説明

mixed db2_result ( resource stmt, mixed column )

警告

この関数は、 実験的なステータスにあります。これは、この関数の 動作、関数名、ここで書かれていること全てがPHPの将来のバージョンで予告 なく変更される可能性があることを意味します。注意を喚起するとともに自分 のリスクでこの関数を使用してください。

Use db2_result() to return the value of a specified column in the current row of a result set. You must call db2_fetch_row() before calling db2_result() to set the location of the result set pointer.

パラメータ

stmt

A valid stmt resource.

column

Either an integer mapping to the 0-indexed field in the result set, or a string matching the name of the column.

戻り値

Returns the value of the requested field if the field exists in the result set. Returns NULL if the field does not exist, and issues a warning.

例 1. A db2_result() example

The following example demonstrates how to iterate through a result set with db2_fetch_row() and retrieve columns from the result set with db2_result().

<?php
$sql
= 'SELECT name, breed FROM animals WHERE weight < ?';
$stmt = db2_prepare($conn, $sql);
db2_execute($stmt, array(10));
while (
db2_fetch_row($stmt)) {
    
$name = db2_result($stmt, 0);
    
$breed = db2_result($stmt, 'BREED');
    print
"$name $breed";
}
?>

上の例の出力は以下となります:

cat Pook
gold fish Bubbles
budgerigar Gizmo
goat Rickety Ride

以下も参照ください

db2_fetch_array()
db2_fetch_assoc()
db2_fetch_both()
db2_fetch_object()
db2_fetch_row()