.Dd January 24, 2024
.Dt SQLITE3_BACKUP 3
.Os
.Sh NAME
.Nm sqlite3_backup
.Nd online backup object
.Sh SYNOPSIS
.In sqlite3.h
.Vt typedef struct sqlite3_backup sqlite3_backup;
.Sh DESCRIPTION
The sqlite3_backup object records state information about an ongoing
online backup operation.
The sqlite3_backup object is created by a call to
.Fn sqlite3_backup_init
and is destroyed by a call to
.Fn sqlite3_backup_finish .
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 9107.
.Bd -literal
typedef struct sqlite3_backup sqlite3_backup;
.Ed
.Sh SEE ALSO
.Xr sqlite3_backup_init 3
