From 3f619478f796eddbba6e39502fe941b285dd97b1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:00:34 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- libmariadb/man/mysql_fetch_row.3 | 44 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 libmariadb/man/mysql_fetch_row.3 (limited to 'libmariadb/man/mysql_fetch_row.3') diff --git a/libmariadb/man/mysql_fetch_row.3 b/libmariadb/man/mysql_fetch_row.3 new file mode 100644 index 00000000..2c20bf70 --- /dev/null +++ b/libmariadb/man/mysql_fetch_row.3 @@ -0,0 +1,44 @@ +.\" Automatically generated by Pandoc 2.5 +.\" +.TH "mysql_fetch_row" "3" "" "Version 3.3.1" "MariaDB Connector/C" +.hy +.SS Name +.PP +mysql_fetch_row \- fetches row of data from result set +.SS Synopsis +.IP +.nf +\f[C] +#include + +MYSQL_ROW mysql_fetch_row(MYSQL_RES * result); +\f[R] +.fi +.SS Description +.PP +Fetches one row of data from the result set and returns it as an array +of char pointers (\f[C]MYSQL_ROW\f[R]), where each column is stored in +an offset starting from 0 (zero). +Each subsequent call to this function will return the next row within +the result set, or NULL if there are no more rows. +.SS Parameter +.IP \[bu] 2 +\f[C]result\f[R] \- a result set identifier returned by +\f[B]mysql_store_result(3)\f[R] or \f[B]mysql_use_result(3)\f[R]. +.SS Notes +.IP \[bu] 2 +If a column contains a \f[C]NULL\f[R] value the corresponding char +pointer will be set to \f[C]NULL\f[R]. +.IP \[bu] 2 +Memory associated to \f[C]MYSQL_ROW\f[R] will be freed when calling +\f[B]mysql_free_result(3)\f[R] function. +.SS Return value +.PP +A \f[C]MYSQL_ROW\f[R] structure (array of character pointers) +representing the data of the current row. +If there are no more rows available \f[C]NULL\f[R]will be returned. +.SS See also +.IP \[bu] 2 +\f[B]mysql_use_result(3)\f[R] +.IP \[bu] 2 +\f[B]mysql_store_result(3)\f[R] -- cgit v1.2.3