mysqli::next_result

mysqli_next_result

(PHP 5, PHP 7)

mysqli::next_result -- mysqli_next_resultPrepare next result from multi_query

Açıklama

Nesne yönelimli kullanım

public mysqli::next_result ( ) : bool

Yordamsal kullanım

mysqli_next_result ( mysqli $mysql ) : bool

Prepares next result set from a previous call to mysqli_multi_query() which can be retrieved by mysqli_store_result() or mysqli_use_result().

Değiştirgeler

bağlantı

Sadece yordamsal tarz: mysqli_connect() veya mysqli_init() işlevinden dönen bir bağlantı tanıtıcısı.

Dönen Değerler

Başarı durumunda true, başarısızlık durumunda false döner. Also returns false if the next statement resulted in an error, unlike mysqli_more_results().

Örnekler

See mysqli_multi_query().

Ayrıca Bakınız