Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: db2_fetch_object - Manual
[go: Go Back, main page]

PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<db2_fetch_bothdb2_fetch_row" width="11" height="7"/>
view the version of this page
Last updated: Thu, 26 May 2005

db2_fetch_object

(no version information, might be only in CVS)

db2_fetch_object --  Returns an object with properties representing columns in the fetched row

説明

object db2_fetch_object ( resource stmt [, int row_number] )

警告

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

Returns an object in which each property represents a column returned in the row fetched from a result set.

パラメータ

stmt

A valid stmt resource containing a result set.

row_number

Requests a specific 1-indexed row from the result set. Passing this parameter results in a PHP warning if the result set uses a forward-only cursor.

戻り値

Returns an object representing a single row in the result set. The properties of the object map to the names of the columns in the result set.

The IBM DB2, Cloudscape, and Apache Derby database servers typically fold column names to upper-case, so the object properties will reflect that case.

If your SELECT statement calls a scalar function to modify the value of a column, the database servers return the column number as the name of the column in the result set. If you prefer a more descriptive column name and object property, you can use the AS clause to assign a name to the column in the result set.

Returns FALSE if no row was retrieved.

例 1. A db2_fetch_object() example

The following example issues a SELECT statement with a scalar function, RTRIM, that removes whitespace from the end of the column. Rather than creating an object with the properties "BREED" and "2", we use the AS clause in the SELECT statement to assign the name "name" to the modified column. The database server folds the column names to upper-case, resulting in an object with the properties "BREED" and "NAME".

<?php
$conn
= db2_connect($database, $user, $password);

$sql = "SELECT breed, RTRIM(name) AS name
   FROM animals
   WHERE id = ?"
;

if (
$conn) {
  
$stmt = db2_prepare($conn, $sql);
  
db2_execute($stmt, array(0));

   while (
$pet = db2_fetch_object($stmt)) {
       echo
"Come here, {$pet->NAME}, my little {$pet->BREED}!";
   }
  
db2_close($conn);
}
?>

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

Come here, Pook, my little cat!



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

<db2_fetch_bothdb2_fetch_row" width="11" height="7"/>
 Last updated: Thu, 26 May 2005
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This mirror generously provided by: PacketBusiness, Inc.
Last updated: Sat Dec 24 05:12:10 2005 JST