mysql_stmt_more_results

mysql_stmt_more_results indicates if one or more results from a previously executed prepared statement are available

Syntax

#include <mysql.h>

my_bool mysql_stmt_more_results(MYSQL_STMT * stmt);

Parameter

Description

Indicates if one or more result sets are available from a previous call to mysql_stmt_execute().

Return Value

Returns 1 if more result sets are available, otherwise zero.

Multiple result sets can be obtained by calling a stored procedure. Executing concatenated statements is not supported in prepared statement protocol.

See Also

Last updated

Was this helpful?