1
0
mirror of synced 2025-01-31 12:32:59 +03:00
doctrine2/lib/Doctrine/DBAL/Driver/PDOConnection.php

12 lines
387 B
PHP
Raw Normal View History

2008-09-12 17:25:38 +00:00
<?php
class Doctrine_DBAL_Driver_PDOConnection extends PDO implements Doctrine_DBAL_Driver_Connection
{
public function __construct($dsn, $user = null, $password = null, array $options = null)
{
parent::__construct($dsn, $user, $password, $options);
$this->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Doctrine_DBAL_Driver_PDOStatement', array()));
}
}
?>