Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nikolaus77/rocker

Database interface class R package
https://github.com/nikolaus77/rocker

database dbi mariadb mysql postgres postgresql r r6 rstats sql sqlite

Last synced: 13 days ago
JSON representation

Database interface class R package

Awesome Lists containing this project

README

        

---
output:
github_document:
toc: true
toc_depth: 2
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# *rocker* -- *R6* database interface class wrapping *DBI*

[![CRAN status](https://www.r-pkg.org/badges/version/rocker)](https://cran.r-project.org/package=rocker)
[![GitHub version](https://img.shields.io/badge/devel%20version-GitHub-yellow.svg)](https://github.com/nikolaus77/rocker)
[![R-CMD-check](https://github.com/nikolaus77/rocker/actions/workflows/check-standard.yaml/badge.svg)](https://github.com/nikolaus77/rocker/actions/workflows/check-standard.yaml)
[![codecov](https://codecov.io/gh/nikolaus77/rocker/branch/main/graph/badge.svg)](https://app.codecov.io/gh/nikolaus77/rocker)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)

[*R6*](https://github.com/r-lib/R6) class interface for handling relational database connections using [*DBI*](https://github.com/r-dbi/DBI) package as backend.
The class allows handling of connections to e.g. [PostgreSQL](https://www.postgresql.org), [MariaDB](https://mariadb.org) and [SQLite](https://www.sqlite.org/index.html).
The purpose is having an intuitive object allowing straightforward handling of SQL databases.

```{r child="man/fragments/Installation.Rmd"}
```

```{r child="man/fragments/Object.Rmd"}
```

```{r child="man/fragments/Packages_Databases.Rmd"}
```

```{r child="man/fragments/Connection.Rmd"}
```

```{r child="man/fragments/Password.Rmd"}
```

```{r child="man/fragments/DBI.Rmd"}
```

```{r child="man/fragments/Transaction.Rmd"}
```

```{r child="man/fragments/S3.Rmd"}
```

```{r child="man/fragments/Help.Rmd"}
```