-
Notifications
You must be signed in to change notification settings - Fork 286
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
Cannot write tbl_df to SQLite database #317
Comments
Should be fixed with the tibble package. |
@krlmlr In what sense? |
tibble calls setOldClass(), R takes care of the rest. (Of course, it must be loaded, which doesn't happen automatically yet.) |
@krlmlr So, in the example (I just updated to make it fully reproducible), what steps do I have to add to make this work? |
requireNamespace("tibble") but this actually should be done by the package itself. |
...or use |
I'm trying to create an SQLite database (using RSQLite), but it's giving an error when trying to write a data.frame read in using
readr::read_fwf
due to the "tbl_df" class:Appears to be same issue as: r-dbi/RSQLite#82
The text was updated successfully, but these errors were encountered: