. */ /** * 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: 5798 $ * @author Konsta Vesterinen */ class Doctrine_Connection_Informix extends Doctrine_Connection_Common { /** * @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) { parent::__construct($manager, $adapter); } /** * quoteIdentifier * * @param string $identifier * @param string $checkOption * @return void */ public function quoteIdentifier($identifier, $checkOption = false) { return $identifier; } }