예제 #1
0
파일: BaseModel.php 프로젝트: dwsla/deal
 public function selectDatabase()
 {
     if (!$this->connection->isConnected()) {
         $this->connection->connect();
     }
     $this->database = $this->connection->getDatabase();
 }