summaryrefslogtreecommitdiffstats
path: root/libmariadb/man/mysql_eof.3
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:24:36 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:24:36 +0000
commit06eaf7232e9a920468c0f8d74dcf2fe8b555501c (patch)
treee2c7b5777f728320e5b5542b6213fd3591ba51e2 /libmariadb/man/mysql_eof.3
parentInitial commit. (diff)
downloadmariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.tar.xz
mariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.zip
Adding upstream version 1:10.11.6.upstream/1%10.11.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--libmariadb/man/mysql_eof.329
1 files changed, 29 insertions, 0 deletions
diff --git a/libmariadb/man/mysql_eof.3 b/libmariadb/man/mysql_eof.3
new file mode 100644
index 00000000..ca5da9bd
--- /dev/null
+++ b/libmariadb/man/mysql_eof.3
@@ -0,0 +1,29 @@
+.\" Automatically generated by Pandoc 2.5
+.\"
+.TH "mysql_eof" "3" "" "Version 3.3.1" "MariaDB Connector/C"
+.hy
+.SS Name
+.PP
+mysql_eof \- determines if the last row of a result set has been read
+.SS Synopsis
+.IP
+.nf
+\f[C]
+#include <mysql.h>
+
+my_bool mysql_eof(MYSQL_RES *result);
+\f[R]
+.fi
+.SS Description
+.PP
+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]