GoLang mysqli::more_results

request it (347)
GoLang replacement for PHP's mysqli::more_results [edit | history]



Do you know a GoLang replacement for PHP's mysqli::more_results? Write it!

PHP mysqli::more_results

PHP original manual for mysqli::more_results [ show | php.net ]

mysqli::more_results

mysqli_more_results

(PHP 5, PHP 7)

mysqli::more_results -- mysqli_more_resultsCheck if there are any more query results from a multi query

Description

Object oriented style

bool mysqli::more_results ( void )

Procedural style

bool mysqli_more_results ( mysqli $link )

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

Parameters

link

Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init()

Return Values

Returns TRUE if one or more result sets are available from a previous call to mysqli_multi_query(), otherwise FALSE.

Examples

See mysqli_multi_query().

See Also