copyDBtoMemory | R Documentation |
copies contents of a sqlite database to another one (default is into :memory:)
copyDBtoMemory(
dbFrom,
dbTo = ":memory:",
noWarnings = TRUE,
copyTables = NA,
doNotCopyTables = "sqlite_sequence"
)
dbFrom |
database from which tables are to be copied, must be open when calling this function |
dbTo |
database to which tables are to be copied |
noWarnings |
suppress warnings while copying data, default = TRUE |
copyTables |
character vector specifying which tables to copy (default NA, copies all tables) |
doNotCopyTables |
character vector that specifies which tables are not to be copied (default = 'sqlite_sequence'). Overrules the copyTables argument. If NA then this parameter is ignored |
an in memory database database, note that this database is returned in an 'open state'
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.