PMA\libraries\dbi\DBIExtension::moreResults PHP Method

moreResults() public method

Check if there are any more query results from a multi query
public moreResults ( resource $link ) : boolean
$link resource the connection object
return boolean true or false
    public function moreResults($link);

Usage Example

 /**
  * Check if there are any more query results from a multi query
  *
  * @param object $link the connection object
  *
  * @return bool true or false
  */
 public function moreResults($link = null)
 {
     $link = $this->getLink($link);
     if ($link === false) {
         return false;
     }
     return $this->_extension->moreResults($link);
 }