Changeset 4042

Show
Ignore:
Timestamp:
03/19/08 05:55:07 (16 months ago)
Author:
jwage
Message:

fixes #872 - How does informix handle identifier quoting if it does at all?

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/lib/Doctrine/Connection/Informix.php

    r3884 r4042  
    4646    public function __construct(Doctrine_Manager $manager, $adapter) 
    4747    { 
    48         // initialize all driver options 
    49  
    5048        parent::__construct($manager, $adapter); 
    5149    } 
     50 
     51    /** 
     52     * quoteIdentifier 
     53     * 
     54     * @param string $identifier  
     55     * @param string $checkOption  
     56     * @return void 
     57     */ 
     58    public function quoteIdentifier($identifier, $checkOption = false) 
     59    { 
     60        return $identifier; 
     61    } 
    5262}