예제 #1
0
파일: AccessDB.php 프로젝트: fzed51/OAD
 function connect()
 {
     if (!$this->connected) {
         parent::__construct($this->connexion->getDns(), $this->connexion->getUserName(), $this->connexion->getPassWord(), $this->connexion->getOptions());
         $this->connected = true;
     }
     return $this;
 }