update : 2015.11.03
php.shukuma.com검색:
|
db2_num_fields(PECL ibm_db2 >= 1.0.0) db2_num_fields — Returns the number of fields contained in a result set 설명
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. 인수
반환값
Returns an integer value representing the number of fields in the result
set associated with the specified statement resource. Returns 예제
Example #1 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 위 예제의 출력: There are 4 columns in the result set. 참고
|