.. Automatically generated by code2rst.py Edit src/backup.c not this file! .. currentmodule:: apsw .. _backup: Backup ****** A backup object encapsulates copying one database to another. You call :meth:`Connection.backup` on the destination database to get the Backup object. Call :meth:`~Backup.step` to copy some pages repeatedly dealing with errors as appropriate. Finally :meth:`~Backup.finish` cleans up committing or rolling back and releasing locks. See the :ref:`example `. Important details ================= The database is copied page by page. This means that there is not a round trip via SQL. All pages are copied including free ones. The destination database is locked during the copy. You will get a :exc:`ThreadingViolationError` if you attempt to use it. The source database can change during the backup. SQLite will come back and copy those changes too until the backup is complete. Backup class ============ .. class:: Backup You create a backup instance by calling :meth:`Connection.backup`. .. method:: Backup.__enter__() -> Backup You can use the backup object as a `context manager `_ as defined in :pep:`0343`. The :meth:`~Backup.__exit__` method ensures that backup is :meth:`finished `. .. method:: Backup.__exit__(etype: Optional[type[BaseException]], evalue: Optional[BaseException], etraceback: Optional[types.TracebackType]) -> Optional[bool] Implements context manager in conjunction with :meth:`~Backup.__enter__` ensuring that the copy is :meth:`finished `. .. method:: Backup.close(force: bool = False) -> None Does the same thing as :meth:`~Backup.finish`. This extra api is provided to give the same api as other APSW objects and files. It is safe to call this method multiple times. :param force: If true then any exceptions are ignored. .. attribute:: Backup.done :type: bool A boolean that is True if the copy completed in the last call to :meth:`~Backup.step`. .. index:: sqlite3_backup_finish .. method:: Backup.finish() -> None Completes the copy process. If all pages have been copied then the transaction is committed on the destination database, otherwise it is rolled back. This method must be called for your backup to take effect. The backup object will always be finished even if there is an exception. It is safe to call this method multiple times. Calls: `sqlite3_backup_finish `__ .. index:: sqlite3_backup_pagecount .. attribute:: Backup.page_count :type: int Read only. How many pages were in the source database after the last step. If you haven't called :meth:`~Backup.step` or the backup object has been :meth:`finished ` then zero is returned. Calls: `sqlite3_backup_pagecount `__ .. index:: sqlite3_backup_remaining .. attribute:: Backup.remaining :type: int Read only. How many pages were remaining to be copied after the last step. If you haven't called :meth:`~Backup.step` or the backup object has been :meth:`finished ` then zero is returned. Calls: `sqlite3_backup_remaining `__ .. index:: sqlite3_backup_step .. method:: Backup.step(npages: int = -1) -> bool Copies *npages* pages from the source to destination database. The source database is locked during the copy so using smaller values allows other access to the source database. The destination database is always locked until the backup object is :meth:`finished `. :param npages: How many pages to copy. If the parameter is omitted or negative then all remaining pages are copied. This method may throw a :exc:`BusyError` or :exc:`LockedError` if unable to lock the source database. You can catch those and try again. :returns: True if this copied the last remaining outstanding pages, else False. This is the same value as :attr:`~Backup.done` Calls: `sqlite3_backup_step `__