Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorporate workaround so that SQLite extensions work #87

Closed
shntnu opened this issue Sep 10, 2017 · 1 comment
Closed

Incorporate workaround so that SQLite extensions work #87

shntnu opened this issue Sep 10, 2017 · 1 comment

Comments

@shntnu
Copy link
Member

shntnu commented Sep 10, 2017

Change

data <- dplyr::copy_to(dplyr::src_sqlite(":memory:", create = T), data)

to

db <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")

RSQLite::initExtension(db)

data <- dplyr::copy_to(db, data)

which is a temporary fix for extension functions not being loaded

See tidyverse/dplyr#3093

@shntnu
Copy link
Member Author

shntnu commented Sep 13, 2017

#99

@shntnu shntnu closed this as completed Sep 13, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant