my_bool mysql_more_results(MYSQL *mysql)
説明
現在実行しているクエリの他にまだ取得していない結果セットが存在し、アプリケーションが
mysql_next_result()
を呼び出して取得する必要がある場合は、true
を返します。この関数は、MySQL 4.1
で追加されました。
戻り値
取得されていない結果セットが存在する場合は
TRUE
(1)。取得されていない結果セットが存在しない場合は
FALSE
(0)。
注意: ほとんどの場合、この関数の代わりに
mysql_next_result()
を呼び出して取得されていない結果セットがあるかどうかを調べて、存在する場合は次の結果セットを開始します。
See 項11.1.8. 「C API における複数クエリの実行の取り扱い」。 See
項11.1.3.63. 「mysql_next_result()
」。
エラー
ありません。
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.