From 69974d645222071bbf32601cedf01a4890e8d1df Mon Sep 17 00:00:00 2001 From: gwenn Date: Sun, 1 Sep 2024 13:15:51 +0200 Subject: [PATCH] Document an alternive way to backup --- src/backup.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backup.rs b/src/backup.rs index a952803..3f983dd 100644 --- a/src/backup.rs +++ b/src/backup.rs @@ -1,5 +1,8 @@ //! Online SQLite backup API. //! +//! Alternatively, you can create a backup with a simple +//! [`VACUUM INTO `](https://sqlite.org/lang_vacuum.html#vacuuminto). +//! //! To create a [`Backup`], you must have two distinct [`Connection`]s - one //! for the source (which can be used while the backup is running) and one for //! the destination (which cannot). A [`Backup`] handle exposes three methods: