In a Swift app, how does one connect to a Postgres database server?
- In Java, we use JDBC with an compliant driver to connect to a Postgres server, communicate SQL, and get a result set.
- In a Win32 app, we use ODBC with a compliant driver to do the same.
How to do the equivalent from Swift?