Associative array of string keys and values.
Currently recognized parameters are:
In addition to the above, any run-time parameter that can be set at backend start time might be listed. Such settings will be applied during backend start (after parsing the command-line options if any). The values will act as session defaults.
1 auto conn = new PGConnection([ 2 "host" : "localhost", 3 "database" : "test", 4 "user" : "postgres", 5 "password" : "postgres" 6 ]);
Opens connection to server.