View source: R/get_wrds_connection.R
get_wrds_connection | R Documentation |
This function establishes a connection to the Wharton Research Data Services
(WRDS) database using the RPostgres
package. It requires that the
RPostgres
package is installed and that valid WRDS credentials are set as
environment variables.
get_wrds_connection()
The function checks if the RPostgres
package is installed before
attempting to establish a connection. It uses the host, dbname, port, and
sslmode as fixed parameters for the connection. Users must set their WRDS
username and password as environment variables WRDS_USER
and
WRDS_PASSWORD
, respectively, before using this function.
An object of class DBIConnection
representing the connection to the
WRDS database. This object can be used with other DBI-compliant functions
to interact with the database.
Postgres
, dbDisconnect
for more
information on managing database connections.
# Before using this function, set your WRDS credentials:
# Sys.setenv(WRDS_USER = "your_username", WRDS_PASSWORD = "your_password")
con <- get_wrds_connection()
# Use `con` with DBI-compliant functions to interact with the WRDS database
# Remember to disconnect after use:
# disconnect_connection(con)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.