Ejemplo n.º 1
0
 /**
  * A method to restore the PEAR::MDB2 options so that case portability
  * is enabled, so tables names will be extracted from the database
  * in a case insensitive fashion.
  *
  * @static
  * @return void
  */
 static function disableCaseSensitive()
 {
     $oDbh = OA_DB::singleton();
     $oDbh->setOption('portability', OA_DB_MDB2_DEFAULT_OPTIONS);
     OA_DB::setQuoteIdentifier();
 }