update : 2015.11.03
php.shukuma.com검색:
|
db2_result(PECL ibm_db2 >= 1.0.0) db2_result — Returns a single column from a row in the result set 설명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. 인수
반환값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. 예제
Example #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 위 예제의 출력: cat Pook gold fish Bubbles budgerigar Gizmo goat Rickety Ride 참고
|