2013-05-22 13:29 UTC+0300 Mindaugas Kavaliauskas (dbtopas/at/
dbtopas.lt)
* /contrib/sddpg/core.c
+ enhanced connection parameters support. Now it is possible to
connect
to PostgreSQL server using:
1) URI string
RDDINFO(RDDI_CONNECT, {"POSTGRESQL", "postgresql://host"})
2) Key=value parameter pairs
RDDINFO(RDDI_CONNECT, {"POSTGRESQL", "host=localhost port=5432"})
3) separate parameters. Support for port, options, tty is added
RDDINFO(RDDI_CONNECT, {"POSTGRESQL", "host", "user", "passwd",
"db",
"port", "options", "tty"})
; Please, test