getSdf {SQLiteDF}R Documentation

Get an SDF

Description

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.

Usage

 getSdf(name) 

Arguments

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.

Details

The SDF must be registered with the SQLiteDF workspace. To get a list of registered SDF, use lsSdf.

Value

Returns an sqlite.data.frame object for the SDF with the specified internal name.

Author(s)

Miguel A. R. Manese

See Also

sqlite.data.frame lsSdf

Examples

    iris.sdf <- sqlite.data.frame(iris)
    iris.sdf.iname <- inameSdf(iris.sdf)
    iris.sdf.too <- getSdf(iris.sdf.iname)

[Package SQLiteDF version 0.1.32 Index]