my_ulonglong mysql_num_rows(MYSQL_RES
*result)
説明
結果セットのレコード数を返します。
mysql_num_rows()
の使い方は、mysql_store_result()
と
mysql_use_result()
のどちらを使用して結果セットを取得するかによって決まります。mysql_store_result()
を使用する場合、すぐに
mysql_num_rows()
を呼び出すことができます。mysql_use_result()
を使用する場合、結果セットに含まれるすべてのレコードを取得するまでは、mysql_num_rows()
は正しい値を返しません。
戻り値
結果セットのレコード数。
エラー
ありません。
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.