db2_result

PECL ibm_db2 >= 1.0.0
db2_result - Returns a single column from a row in the result set
Manual
Code Examples

db2_result( resource$stmt, mixed$column ): mixed

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.

Parameters

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.

Return Values

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.

Related Functions

Example of db2_result

Show all examples for db2_result

PHP Version: