PMA\libraries\dbi\DBIMysql::nextResult PHP Метод

nextResult() публичный Метод

Prepare next result from multi_query
public nextResult ( resource $link ) : boolean
$link resource the connection object
Результат boolean false
    public function nextResult($link)
    {
        // N.B.: PHP's 'mysql' extension does not support
        // multi_queries so this function will always
        // return false. Use the 'mysqli' extension, if
        // you need support for multi_queries.
        return false;
    }