You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of the connect function demands the password to make a connection. Is it a better approach to read .pgpass and respect the peer authentication setting?
The text was updated successfully, but these errors were encountered:
Well the correct way to handle it would be to change the password argument to a Nullable and pass C_NULL when no password is provided. libpq will then read .pgpass for the password.
The current implementation of the
connect
function demands the password to make a connection. Is it a better approach to read .pgpass and respect the peer authentication setting?The text was updated successfully, but these errors were encountered: