コード例 #1
0
 private function configureDatabase()
 {
     if ($this->configure->isDataBaseActive()) {
         $host = $this->configure->getDataBaseHost();
         $user = $this->configure->getDataBaseUser();
         $pass = $this->configure->getDataBasePass();
         $schema = $this->configure->getDataBaseSchm();
         Ibe_Database::open($host, $user, $pass, $schema);
     }
 }