https://github.com/corymccartan/rsqlcipher
https://github.com/corymccartan/rsqlcipher
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/corymccartan/rsqlcipher
- Owner: CoryMcCartan
- Created: 2019-07-04T04:52:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-08T20:53:19.000Z (almost 6 years ago)
- Last Synced: 2025-01-10T23:35:24.887Z (5 months ago)
- Language: R
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RSQLCipher
An R package for working with SQLite databases encrypted in SQLCipher. Does NOT
use the DBI backend. Is NOT a drop-in replacement for RSQLite.## Installation Instructions
`devtools::install_github("CoryMcCartan/RSQLCipher")`## Example Usage
RSQLCipher provides the `load_table` and `execute` functions.
```R
library(RSQLCipher)
library(tidyverse)# load the database table
# will be prompted for authentication key the first time
d = load_table("database.db", "customers")summarized = d %>%
group_by(city) %>%
summarize(count=n()) %>%
execute
```