Learn R Programming

⚠️There's a newer version (7.0.0) of this package.Take me there.

DatabaseConnector

DatabaseConnector is part of HADES.

Introduction

This R package provides function for connecting to various DBMSs. Together with the SqlRender package, the main goal of DatabaseConnector is to provide a uniform interface across database platforms: the same code should run and produce equivalent results, regardless of the database back end.

Features

  • Create connections to the various database platforms:
    • MicrosoftSQL Server
    • Oracle
    • PostgresSql
    • Microsoft Parallel Data Warehouse (a.k.a. Analytics Platform System)
    • Amazon Redshift
    • Apache Impala
    • Google BigQuery
    • IBM Netezza
    • SQLite
    • Spark
    • InterSystems IRIS
  • Statements for executing queries with
    • Error reporting to file
    • Progress reporting
    • Multiple statements per query
  • Support for fetching data to Andromeda objects
  • Insert data frame to a database table
  • Supports the DBI interface, with SQL statements automatically translated to the appropriate dialect.
  • Supports the dbplyr interface.
  • Integrates with RStudio's Connections tab

Examples

connectionDetails <- createConnectionDetails(dbms="postgresql", 
                                             server="localhost",
                                             user="root",
                                             password="blah")
conn <- connect(connectionDetails)
querySql(conn,"SELECT COUNT(*) FROM person")
disconnect(conn)

Technology

DatabaseConnector is an R package using Java's JDBC drivers and other DBI drivers.

System Requirements

Running the package requires R with the package rJava installed. Also requires Java 1.8 or higher.

Installation

  1. See the instructions here for configuring your R environment, including Java.

  2. To install the latest stable version, install from CRAN:

install.packages("DatabaseConnector")
  1. Download the database drivers as described here.

  2. (Optionally) To use Windows Authentication for SQL Server, download the authentication DDL file as described here.

User Documentation

Documentation can be found on the package website.

PDF versions of the documentation are also available:

Support

  • Developer questions/comments/feedback: OHDSI Forum
  • We use the GitHub issue tracker for all bugs/issues/enhancements

Contributing

Read here how you can contribute to this package.

License

DatabaseConnector is licensed under Apache License 2.0. The JDBC drivers fall under their own respective licenses.

Development

DatabaseConnector is being developed in R Studio.

Development status

Stable. The code is actively being used in several projects.

Acknowledgements

  • This project is supported in part through the National Science Foundation grant IIS 1251151.

Copy Link

Version

Install

install.packages('DatabaseConnector')

Monthly Downloads

11,870

Version

6.4.0

License

Apache License

Issues

Pull Requests

Stars

Forks

Maintainer

Martijn Schuemie

Last Published

January 30th, 2025

Functions in DatabaseConnector (6.4.0)

dbClearResult,DatabaseConnectorDbiResult-method

Clear a result set
dbClearResult,DatabaseConnectorJdbcResult-method

Clear a result set
dbGetInfo,DatabaseConnectorConnection-method

Get DBMS metadata
dbCreateTable,DatabaseConnectorConnection-method

Create a table in the database
dbConnect,DatabaseConnectorDriver-method

Create a connection to a DBMS
dbGetQuery,DatabaseConnectorConnection,character-method

Retrieve results from a query
dbFetch,DatabaseConnectorJdbcResult-method

Fetch records from a previously executed query
dbGetInfo,DatabaseConnectorDriver-method

Get DBMS metadata
dbDisconnect,DatabaseConnectorConnection-method

Disconnect (close) a connection
dbFetch,DatabaseConnectorDbiResult-method

Fetch records from a previously executed query
dbExistsTable,DatabaseConnectorConnection,character-method

Does a table exist?
dbExecute,DatabaseConnectorConnection,character-method

Change database state
dbGetRowsAffected,DatabaseConnectorDbiResult-method

The number of rows affected
dbGetRowsAffected,DatabaseConnectorJdbcResult-method

The number of rows affected
dbGetStatement,DatabaseConnectorDbiResult-method

Get the statement associated with a result set
dbHasCompleted,DatabaseConnectorJdbcResult-method

Completion status
dbHasCompleted,DatabaseConnectorDbiResult-method

Completion status
dbGetRowCount,DatabaseConnectorJdbcResult-method

The number of rows fetched so far
dbGetRowCount,DatabaseConnectorDbiResult-method

The number of rows fetched so far
dbGetStatement,DatabaseConnectorJdbcResult-method

Get the statement associated with a result set
dbWriteTable,DatabaseConnectorConnection,ANY-method

Copy data frames to database tables
dbms

Get the database platform from a connection
downloadJdbcDrivers

Download DatabaseConnector JDBC Jar files
disconnect

Disconnect from the server
dbListFields,DatabaseConnectorConnection,character-method

List field names of a remote table
dbListTables,DatabaseConnectorConnection-method

List remote tables
getTableNames

List all tables in a database schema.
inDatabaseSchema

Refer to a table in a database schema
lowLevelExecuteSql

Execute SQL code
querySqlToAndromeda

Retrieves data to a local Andromeda object
renderTranslateExecuteSql

Render, translate, execute SQL code
jdbcDrivers

How to download and use JDBC drivers for the various data platforms.
dbSendQuery,DatabaseConnectorJdbcConnection,character-method

Execute a query on a given database connection
month

Extract the month from a date
dbSendQuery,DatabaseConnectorDbiConnection,character-method

Execute a query on a given database connection
querySql

Retrieve data to a data.frame
eoMonth

Return the end of the month
insertTable

Insert a table on the server
isSqlReservedWord

Test a character vector of SQL names for SQL reserved words
dropEmulatedTempTables

Drop all emulated temp tables.
dbRemoveTable,DatabaseConnectorConnection,ANY-method

Remove a table from the database
dbIsValid,DatabaseConnectorJdbcConnection-method

Is this DBMS object still valid?
dbIsValid,DatabaseConnectorDbiConnection-method

Is this DBMS object still valid?
renderTranslateQuerySqlToAndromeda

Render, translate, and query to local Andromeda
requiresTempEmulation

Does the DBMS require temp table emulation?
dbReadTable,DatabaseConnectorConnection,character-method

Read database tables as data frames
executeSql

Execute SQL code
dbUnloadDriver,DatabaseConnectorDriver-method

Load and unload database drivers
extractQueryTimes

Extract query times from a ParallelLogger log file
dbSendStatement,DatabaseConnectorConnection,character-method

Execute a data manipulation statement on a given database connection
getAvailableJavaHeapSpace

Get available Java heap space
year

Extract the year from a date
existsTable

Does the table exist?
renderTranslateQuerySql

Render, translate, and query to data.frame
lowLevelQuerySqlToAndromeda

Low level function for retrieving data to a local Andromeda object
renderTranslateQueryApplyBatched

Render, translate, and perform process to batches of data.
lowLevelQuerySql

Low level function for retrieving data to a data frame
DatabaseConnectorDbiResult-class

DatabaseConnector DBI results class.
assertTempEmulationSchemaSet

Assert the temp emulation schema is set
createConnectionDetails

createConnectionDetails
createDbiConnectionDetails

Create DBI connection details
dateFromParts

Construct a date from parts
dbColumnInfo,DatabaseConnectorDbiResult-method

Information about result types
createZipFile

Compress files and/or folders into a single zip file
connect

connect
dbColumnInfo,DatabaseConnectorJdbcResult-method

Information about result types
DatabaseConnectorDriver

Create a DatabaseConnectorDriver object
computeDataHash

Compute hash of data
DatabaseConnectorDriver-class

DatabaseConnectorDriver class.
day

Extract the day from a date
dateAdd

Add an interval to a date
dateDiff

Compute difference between dates
dbAppendTable,DatabaseConnectorConnection,character-method

Insert rows into a table
DatabaseConnector-package

DatabaseConnector: Connecting to Various Database Platforms
DatabaseConnectorJdbcResult-class

DatabaseConnector JDBC results class.