void mysql_stmt_data_seek(MYSQL_STMT *stmt,
my_ulonglong offset)
説明
ステートメントの結果セットの任意のレコードにシークします。offset
値はレコード番号を表し、0
から mysql_stmt_num_rows(stmt)-1
の範囲で指定します。
mysql_stmt_data_seek()
を使用するには、ステートメントの結果セット構造体に最後に実行されたクエリの結果全体が格納されている必要があるので、mysql_stmt_store_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.