private function getConnection()
 {
     if (!$this->connection) {
         $this->connection = new Connection();
         $this->connection->setConnectionParams($this->mysql_host, $this->mysql_port);
     }
     return $this->connection;
 }