CompSqliteConn {biodb} | R Documentation |
This is the connector class for a Compound database.
biodb::BiodbConnBase
-> biodb::BiodbConn
-> biodb::SqliteConn
-> CompSqliteConn
clone()
The objects of this class are cloneable with this method.
CompSqliteConn$clone(deep = FALSE)
deep
Whether to make a deep clone.
Super class SqliteConn
.
# Create an instance with default settings: mybiodb <- biodb::newInst() # Get a connector: chebi_file <- system.file("extdata", "chebi_extract.sqlite", package="biodb") conn <- mybiodb$getFactory()$createConn('comp.sqlite', url=chebi_file) # Get an entry e <- conn$getEntry('1018') # Terminate instance. mybiodb$terminate()