createConnectionDetails: createConnectionDetails

Description Usage Arguments Details Value DBMS parameter details Examples

View source: R/DatabaseConnector.R

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)

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

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. 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)

hxia/DatabaseConnector4Impala documentation built on May 17, 2019, 9:15 p.m.