void mysql_data_seek(MYSQL_RES *result, uint64_t offset)
查找查询结果集中的任意行。该 offset值是行号。指定从0到 范围内的值mysql_num_rows(result)-1。
offset
0
mysql_num_rows(result)-1
此函数要求结果集结构包含查询的全部结果,因此 mysql_data_seek()只能与 结合使用 mysql_store_result(),而不能与 结合使用mysql_use_result()。
mysql_data_seek()
mysql_store_result()
mysql_use_result()
没有任何。