sqliteCopyDatabase: Copy a SQLite database

Description Usage Arguments Author(s) References Examples

Description

Copies a database connection to a file or to another database connection. It can be used to save an in-memory database (created using dbname = ":memory:" or dbname = "file::memory:") to a file or to create an in-memory database a copy of another database.

Usage

1

Arguments

from

A SQLiteConnection object. The main database in from will be copied to to.

to

A SQLiteConnection object pointing to an empty database.

Author(s)

Seth Falcon

References

http://www.sqlite.org/backup.html

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
library(DBI)
# Copy the built in databaseDb() to an in-memory database
con <- dbConnect(RSQLite::SQLite(), ":memory:")
dbListTables(con)

db <- RSQLite::datasetsDb()
RSQLite::sqliteCopyDatabase(db, con)
dbDisconnect(db)
dbListTables(con)

dbDisconnect(con)

real-didi/RSQLiteFixed documentation built on May 21, 2019, 1:45 p.m.