. */ Doctrine::autoload('Doctrine_Connection'); /** * Doctrine_Connection_Mysql * * @package Doctrine ORM * @url www.phpdoctrine.com * @license LGPL */ class Doctrine_Connection_Informix extends Doctrine_Connection { /** * @var string $driverName the name of this connection driver */ protected $driverName = 'Informix'; /** * the constructor * * @param Doctrine_Manager $manager * @param PDO $pdo database handle */ public function __construct(Doctrine_Manager $manager, PDO $pdo) { // initialize all driver options parent::__construct($manager, $pdo); } }