. */ Doctrine::autoload('Doctrine_Connection'); /** * Doctrine_Connection_Mysql * * @package Doctrine * @subpackage Connection * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.org * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ 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, $adapter) { // initialize all driver options parent::__construct($manager, $adapter); } }