createConnectionDetails: createConnectionDetails

Description Usage Arguments Details Value DBMS parameter details Examples

Description

createConnectionDetails creates a list containing all details needed to connect to a database.

Usage

1
2
createConnectionDetails(dbms = "sql server", user, domain, password, server,
  port, schema, extraSettings, oracleDriver = "thin")

Arguments

dbms

The type of DBMS running on the server. Valid values are

  • "mysql" for MySQL

  • "oracle" for Oracle

  • "postgresql" for PostgreSQL

  • "redshift" for Amazon Redshift

  • "sql server" for Microsoft SQL Server

  • "pdw" for Microsoft Parallel Data Warehouse (PDW)

  • "netezza" for IBM Netezza

user

The user name used to access the server.

domain

For SQL Server only: the Windows domain (optional).

password

The password for that user.

server

The name of the server.

port

(optional) The port on the server to connect to.

schema

(optional) The name of the schema to connect to.

extraSettings

(optional) Additional configuration settings specific to the database provider to configure things as security for SSL. These must follow the format for the JDBC connection for the RDBMS specified in dbms.

oracleDriver

Specify which Oracle drive you want to use. Choose between "thin" or "oci".

Details

This function creates a list containing all details needed to connect to a database. The list can then be used in the connect function.

Value

A list with all the details needed to connect to a database.

DBMS parameter details

Depending on the DBMS, the function arguments have slightly different interpretations: MySQL:

Oracle:

Microsoft SQL Server:

Microsoft PDW:

Connections where the domain need to be specified are not supported PostgreSQL:

Redshift:

Netezza:

To be able to use Windows authentication for SQL Server (and PDW), you have to install the JDBC driver. Download the .exe from Microsoft and run it, thereby extracting its contents to a folder. In the extracted folder you will find the file sqljdbc_4.0/enu/auth/x64/sqljdbc_auth.dll (64-bits) or sqljdbc_4.0/enu/auth/x86/sqljdbc_auth.dll (32-bits), which needs to be moved to location on the system path, for example to c:/windows/system32.

When using a Windows domain to log in to SQL Server, DatabaseConnector must rely on a non-Microsoft driver. This driver has know issues with retrieving dates. We therefor recommend to either use Windows integrated security, or if a different user is needed, try running RStudio using that user: runas /netonly /user:domain\username "C:\path\to\rstudio\bin\rstudio.exe".

In order to enable Netezza support, place your Netezza jdbc driver at inst/java/nzjdbc.jar in this package.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
connectionDetails <- createConnectionDetails(dbms = "mysql",
                                             server = "localhost",
                                             user = "root",
                                             password = "blah",
                                             schema = "cdm_v4")
conn <- connect(connectionDetails)
dbGetQuery(conn, "SELECT COUNT(*) FROM person")
dbDisconnect(conn)

## End(Not run)

fagirtmi/DatabaseConnector documentation built on May 16, 2019, 9:58 a.m.