Skip to content

Instantly share code, notes, and snippets.

@JosiahParry
Created April 12, 2025 18:27
Show Gist options
  • Save JosiahParry/bca0af1b83602f85acfe96d321a29ab2 to your computer and use it in GitHub Desktop.
Save JosiahParry/bca0af1b83602f85acfe96d321a29ab2 to your computer and use it in GitHub Desktop.
Backup a sqlite database using Rhttps://mastodon.social/@gvwilson/114316283939691522
library(RSQLite)
db_disk <- dbConnect(SQLite(), "/path/to/database.sqlite3")
db_mem <- dbConnect(SQLite(), ":memory:")
sqliteCopyDatabase(db_disk, db_mem)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment