View source: R/get_wrds_connection.R
| get_wrds_connection | R Documentation |
Establishes a connection to the Wharton Research Data Services (WRDS)
database using the RPostgres package. It requires that the RPostgres
package be installed and that valid WRDS credentials be 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.
RPostgres::Postgres(), DBI::dbDisconnect() for more
information on managing database connections.
Other WRDS functions:
disconnect_connection(),
download_data_wrds(),
download_data_wrds_ccm_links(),
download_data_wrds_compustat(),
download_data_wrds_crsp(),
download_data_wrds_fisd(),
download_data_wrds_trace_enhanced(),
set_wrds_credentials()
## Not run:
# 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)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.