View source: R/get_connection.R
get_connection | R Documentation |
Function get_connection(dbname, schemaname) Creates a new connection to schema dbname.schemaname. If both arguments are NULL then get_connection will try to call get_nuvolos_db_path().
get_connection(
username = NULL,
password = NULL,
dbname = NULL,
schemaname = NULL
)
username |
The Nuvolos username of the connecting user. To obtain the username, please consult the connection guide on Nuvolos. |
password |
The Nuvolos password of the connecting user. To obtain the password, please consult the connection guide on Nuvolos. |
dbname |
The database (organization + space) to connect to |
schemaname |
The schema (instance + state) to connect to |
Return an ODBC connection object.
con <- get_connection()
con <- get_connection(dbname = "my_database", schemaname = "my_schema")
con <- get_connection(username = "my_user",
password = "my_password",
dbname = "my_database", schemaname = "my_schema")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.