getSdf {SQLiteDF} | R Documentation |
Gets a handle to an SDF registered in the workspace. The returned handle is a sqlite.data.frame object which can be used with the most common operators for data frames.
getSdf(name)
name |
A string containing the internal name of the desired SDF. This SDF is attached to the SQLiteDF workspace if it is not yet attached. |
The SDF must be registered with the SQLiteDF workspace. To get a list
of registered SDF, use lsSdf
.
Returns an sqlite.data.frame object for the SDF with the specified internal name.
Miguel A. R. Manese
iris.sdf <- sqlite.data.frame(iris) iris.sdf.iname <- inameSdf(iris.sdf) iris.sdf.too <- getSdf(iris.sdf.iname)