SelectBLOB: SelectBLOB

Description Usage Arguments Value See Also Examples

View source: R/Select.R

Description

Convenience function to retrieve any kind of BLOB stored in table storage of SQLite database

Usage

1
SelectBLOB(name, db, table = "storage")

Arguments

name

chr name of BLOB

db

chr full file name with path of database

table

chr (="storage") name of the storage table in db

Value

R object selected

See Also

Other SQLite handler functions: InsertBLOB, Insert, Intersect, Select, UpdateBLOB, Update

Examples

1
2
3
4
5
db <- "db/test.db"
Create_testDB(db)
x <- list(a = 1:5, b = list(c = c("a", "b")))
InsertBLOB("test2", x, db)
SelectBLOB("test2", db)

mRcSchwering/abacus documentation built on May 21, 2019, 9:18 a.m.