avsdev-cw 02d11c75b2 Some changes to db
- Generic ScalarQuery is no longer used so removed
- Handle the case where the column length is > 0 but the number of rows is 0
2020-09-15 17:31:51 +01:00
2020-09-15 17:31:51 +01:00
2020-09-02 16:35:40 +01:00
2020-09-02 15:48:03 +01:00
2020-09-02 16:35:40 +01:00
2020-09-02 16:35:40 +01:00
2020-09-02 15:48:03 +01:00
2020-09-02 16:35:40 +01:00

RMetaObjDB

RMetaObjDB implements a metadata-object database for storing R objects in MySQL. R objects are serialized into a binary memory buffer which is then written into a MySQL database along with metadata such as creation timestamp, update timestamp, owner, title etc. The metadata fields are customisable on creation of the database. the metadata fields are cleartext and queryable allowing objects to be found and returned. On returning an object, it is de-serialised using the reverseof the serialize to binary memory process.

Installation

You can install the released version of RMetaObjDB from CRAN with:

install.packages("RMetaObjDB")

Example

This is a basic example which shows you how to solve a common problem:

library(RMetaObjDB)
## basic example code
Description
R Meta-Object Data Base
Readme 263 KiB
Languages
C 92.5%
R 7.5%