mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-04-18 21:24:07 +03:00
25 lines
742 B
Groff
25 lines
742 B
Groff
.\" Automatically generated by Pandoc 3.5
|
|
.\"
|
|
.TH "mysql_eof" "3" "" "Version 3.3" "MariaDB Connector/C"
|
|
.SS Name
|
|
mysql_eof \- determines if the last row of a result set has been read
|
|
.SS Synopsis
|
|
.IP
|
|
.EX
|
|
#include \f[B]<mysql.h>\f[R]
|
|
|
|
my_bool mysql_eof(MYSQL_RES *result);
|
|
.EE
|
|
.SS Description
|
|
Determines if the last row of a result set has been read.
|
|
.PP
|
|
\f[B]Notes:\f[R] * This function is deprecated and will be removed.
|
|
Instead determine the end of a result set by checking return value of
|
|
\f[B]mysql_fetch_row(3)\f[R].
|
|
* If a result set was acquired by \f[B]mysql_store_result(3)\f[R]
|
|
mysql_eof will always return true.
|
|
## Return value Returns true if the entire result set was read.
|
|
.SS See also
|
|
.IP \[bu] 2
|
|
\f[B]mysql_fetch_row(3)\f[R]
|