PMA\libraries\DatabaseInterface::getProtoInfo PHP Method

getProtoInfo() public method

Returns the version of the MySQL protocol used
public getProtoInfo ( object $link = null ) : integer
$link object mysql link
return integer version of the MySQL protocol used
    public function getProtoInfo($link = null)
    {
        $link = $this->getLink($link);
        if ($link === false) {
            return false;
        }
        return $this->_extension->getProtoInfo($link);
    }