Odbc Driver For Postgresql -
Fetch=1000
Server: localhost Port: 5432 Database: mydb Driver: PostgreSQL Unicode Authentication: Username/Password odbc driver for postgresql
$connString = "Driver=PostgreSQL Unicode;Server=localhost;Database=mydb;Uid=postgres;Pwd=password;" $conn = New-Object System.Data.Odbc.OdbcConnection($connString) $conn.Open() odbc driver for postgresql
# Disable SSL for testing SSLmode=disable odbc driver for postgresql