nycflights13_create_sql: Create a standardised database for testing

Description Usage Arguments Value Examples

View source: R/nycflights13-sql.R

Description

Using the connection given in con, create a database including a few tables from the nycflights13 dataset.

Usage

1
nycflights13_create_sql(con, schema = "", ...)

Arguments

con

an SQL connection (i.e a PostgreSQL connection)

schema

schema to write the tables ("", or no schema by default)

...

additional parameters to connect to a database

Value

the connection given in con invisibly, generally called for the side effects of writing to the database

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
if (check_for_pkg("RSQLite", message)) {
  con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")

  nycflights13_create_sql(con)

  DBI::dbGetQuery(
    con,
    "SELECT year, month, day, carrier, flight, tailnum FROM flights LIMIT 10"
  )

  DBI::dbDisconnect(con)
}

blaquez/dittodb documentation built on Oct. 5, 2020, 12:02 a.m.