1mysql_stmt_more_results(3) MariaDB Connector/C mysql_stmt_more_results(3)
2
3
4
5 Name
6 mysql_stmt_more_results - indicates if one or more results from a pre‐
7 viously executed prepared statement are available
8
9 Synopsis
10 #include <mysql.h>
11
12 my_bool mysql_stmt_more_results(MYSQL_STMT * stmt);
13
14 Description
15 Indicates if one or more result sets are available from a previous call
16 to mysql_stmt_execute(3).
17
18 Parameter
19 • stmt - a statement handle, which was previously allocated by
20 mysql_stmt_init() (mysql_init) and executed by mysql_stmt_execute(3).
21
22 Notes
23 • Multiple result sets can be obtained by calling a stored procedure.
24 Executing concatenated statements is not supported in prepared state‐
25 ment protocol.
26
27 Return value
28 Returns 1 if more result sets are available, otherwise zero.
29
30 See also
31 • mysql_stmt_next_result(3)
32
33 • mysql_stmt_store_result(3)
34
35
36
37Version 3.2.2 mysql_stmt_more_results(3)