示例#1
0
文件: BaseModel.php 项目: dwsla/deal
 public function selectDatabase()
 {
     if (!$this->connection->isConnected()) {
         $this->connection->connect();
     }
     $this->database = $this->connection->getDatabase();
 }