readObjectFromTable: Read add an Object from inside a SQLite database table

Description Usage Arguments Examples

Description

Read add an Object from inside a SQLite database table

Usage

1
readObjectFromTable(objectToRead, tableName, databaseToReadFrom, ...)

Arguments

objectToRead

The name of theR object to be read from inside the database

tableName

table to read from

databaseToReadFrom

The Path to the database that the object will read from

...

additional arguments to be passed to the decompression function memDecompress, unlikely necessary

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
exampleVector<-c(1,2,3,4)
appendObjectToTable(exampleVector, "Example_Vector", "Example_Table","Example.DB")

exampleVector2<-readObjectFromTable("Example_Vector","Example_Table","Example.DB")

identical(exampleVector,exampleVector2)

## End(Not run)

thebioengineer/AxioSerializer documentation built on May 12, 2019, 8:45 a.m.