Description Usage Arguments Examples
View source: R/redshift_core.R
Use credentials provided in ini file to connect to DWH, and return the connection pointer
1 2 | dwh_connect(credentials_file = "~/.dwh_credentials", sslmode = "require",
bigint = "numeric")
|
credentials_file |
The file where the host, database, user, password and port are |
sslmode |
Type of SSL requirement to send to PGSQL's client, Auth0's DWH will only accept SSL connections |
bigint |
The R type that 64-bit integer types should be mapped to, default is numeric (float), which modifies very big numbers, in some scenarios we may need to switch to integer64 to capture it accurately. The possible options are numeric, integer, character and integer64 |
1 2 | con = dwh_connect()
tenants = tbl(con, 'tenants')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.