Establishes a connection to the WRDS PostgreSQL server using credentials stored securely in the system keyring.
Details
Credentials must be set up before first use with wrds_set_credentials().
The connection uses bigint = "numeric" so that 64-bit integers from
PostgreSQL are returned as doubles, which avoids overflow and works
well with tidyverse functions.
Examples
if (FALSE) { # \dontrun{
wrds <- wrds_connect()
list_subscriptions(wrds)
wrds_disconnect(wrds)
} # }