Prado\Data\TDbConnection::__construct PHP Метод

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

Note, the DB connection is not established when this connection instance is created. Set {@link setActive Active} property to true to establish the connection. Since 3.1.2, you can set the charset for MySql connection
См. также: http://www.php.net/manual/en/function.PDO-construct.php
public __construct ( $dsn = '', $username = '', $password = '', $charset = '' )
    public function __construct($dsn = '', $username = '', $password = '', $charset = '')
    {
        $this->_dsn = $dsn;
        $this->_username = $username;
        $this->_password = $password;
        $this->_charset = $charset;
    }