You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fails when a package is loaded but not attached (i.e. when the package is loaded with imports) because do.call can not find the function name in the global environment.
It might be better to have a convention where it also looks for packageName::packageName
The text was updated successfully, but these errors were encountered:
While I don't think we can remove it for back-compat reasons, I'm not all that clear of the value of dbDriver as a generic. The arguments needed to connect to a particular backend are at the crux of the "what is different". Each package already (I think) has a function like SQLite(). I wonder if we should move to have that be the way to get a driver.
Another idea would be to encourage package authors to create individual functions like sqliteConnect() that users would call - that would be a more natural place for the documentation to live.
This fails when a package is loaded but not attached (i.e. when the package is loaded with imports) because
do.call
can not find the function name in the global environment.It might be better to have a convention where it also looks for
packageName::packageName
The text was updated successfully, but these errors were encountered: