# PostgreSQL
# Standard postgres connect string, just like php, see postgres docs for
# details
#pgsql_connect_string "user = someuser dbname = mydb host = databaseserver.com"

{
 $OUT .="\n";
 my $dbtype = $bandwidthd{'DbType'} || "mysql";
 my $dbhost = $bandwidthd{'Dbhost'} || "localhost";

 $OUT .= "pgsql_connect_string  \"user = ".$bandwidthd{'DbUser'}." password = ". $bandwidthd{'DbPassword'} ."  dbname = ".$bandwidthd{'DbName'}." host = $dbhost\";\n"
unless $dbtype eq "mysql";

}

