Displaying 1 result from an estimated 1 matches for "directoryobjecttable".
2015 Apr 15
4
RObjectTables freezes in R 3.2.0 RC on 32bit systems
...Tables package from OmegaHat, is no longer maintained. I created a
slightly updated version of RObjectTables package (added a NAMESPACE file)
to reproduce the problem:
devtools::install_github("jeroenooms/RObjectTables")
The problem can be triggered using the included example from the
DirectoryObjectTable manual.
library(RObjectTables)
db <- DirectoryObjectTable(tempdir())
dbwrite(db, "x", 1:10)
dbwrite(db, "y", letters[1:3])
dbobjects(db)
dbread(db, "x")
attach(newRFunctionTable(db), name = "myRData")
Things work as expected up till dbread(...