/**
  * Public Constructor 
  */
 function __construct()
 {
     parent::__construct();
     if (self::$_mapIsInitialized == false) {
         $this->_initializeMaps();
     }
 }
示例#2
0
 /**
  * Public Constructor.
  *
  * @param int $mode Mode has to be one of {MYSQL_MODE|ANSI_MODE} to allow
  *                  correct encoding
  *
  * @return does not return a value.
  */
 public function __construct($mode = self::MYSQL_STD)
 {
     parent::__construct();
     $this->_mode = $mode;
 }
 /**
  * Public Constructor 
  */
 function __construct()
 {
     parent::__construct();
 }