Oracle 5.0 Reference Manual page 2413

Table of Contents

Advertisement

bool mysqli::more_results();
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
Return Values
Returns
TRUE
Examples
See mysqli_multi_query.
See Also
mysqli_multi_query
mysqli_next_result
mysqli_store_result
mysqli_use_result
20.7.3.9.33. mysqli::multi_query,
Copyright 1997-2012 the PHP Documentation Group. [2230]
mysqli::multi_query
mysqli_multi_query
Performs a query on the database
Description
Object oriented style
bool mysqli::multi_query(
string query);
Procedural style
bool mysqli_multi_query(
mysqli link,
string query);
Executes one or multiple queries which are concatenated by a semicolon.
To retrieve the resultset from the first query you can use
mysqli_store_result. All subsequent query results can be processed using
mysqli_more_results
Parameters
link
MySQL Improved Extension (Mysqli)
Procedural style only: A link identifier returned by
mysqli_connect
on success or
on failure.
FALSE
mysqli_multi_query
and mysqli_next_result.
Procedural style only: A link identifier returned by
mysqli_connect
or
mysqli_init
mysqli_use_result
or
mysqli_init
2393
or

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the 5.0 and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Mysql 5.0

Table of Contents