ezSQL_pdo::quick_connect PHP Method

quick_connect() public method

******************************************************************** In the case of PDO quick_connect is not really needed because std. connect already does what quick connect does - but for the sake of consistency it has been included
public quick_connect ( $dsn = '', $user = '', $password = '', $ssl = [] )
    function quick_connect($dsn = '', $user = '', $password = '', $ssl = array())
    {
        return $this->connect($dsn, $user, $password);
    }