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

storeResult() public method

Store the result returned from multi query
public storeResult ( resource $link ) : mixed
$link resource mysql link
return mixed false when empty results / result set when not empty
    public function storeResult($link);

Usage Example

Exemplo n.º 1
0
 /**
  * Store the result returned from multi query
  *
  * @param object $link the connection object
  *
  * @return mixed false when empty results / result set when not empty
  */
 public function storeResult($link = null)
 {
     $link = $this->getLink($link);
     if ($link === false) {
         return false;
     }
     return $this->_extension->storeResult($link);
 }