# SME Server Settings MYSQL DB
# MySQL
{
my $dbhost = $bandwidthd{'Dbhost'} || "localhost";
my $dbport = $bandwidthd{'Dbport'} || "0";
  $OUT .= "mysql_host \"". $dbhost ."\"\n";
  $OUT .= "mysql_dbname \"". $bandwidthd{'DbName'} ."\"\n";
  $OUT .= "mysql_user \"". $bandwidthd{'DbUser'} ."\"\n";
  $OUT .= "mysql_pass \"". $bandwidthd{'DbPassword'} ."\"\n";
  $OUT .= "# Port 0 means, that the default port is used\n";
  $OUT .= "mysql_port ". $dbport ."\n";
}
