Closes the SQLite connection and, for file-based databases, deletes the database file. For in-memory databases the data is simply discarded. Storage is reverted to the default in-memory local backend. Errors if no SQLite backend is currently set.
Examples
if (FALSE) { # \dontrun{
my_gitstats <- create_gitstats() |>
set_sqlite_storage(dbname = "gitstats.sqlite")
remove_sqlite_storage(my_gitstats)
} # }