/**
  * Returns a DSN string using the given options
  *
  * @return string DSN
  */
 protected function getDSN() : string
 {
     // the charset option is specific to mysql
     return parent::getDSN() . ';charset=' . $this->options->mysql_charset;
 }