Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nikolaus77/rocker
- Owner: nikolaus77
- License: other
- Created: 2021-11-07T00:54:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-20T22:32:07.000Z (about 2 years ago)
- Last Synced: 2024-09-23T17:39:46.116Z (about 2 months ago)
- Topics: database, dbi, mariadb, mysql, postgres, postgresql, r, r6, rstats, sql, sqlite
- Language: R
- Homepage:
- Size: 521 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - nikolaus77/rocker - Database interface class R package (R)
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"}
```