xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_backup.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE3_BACKUP 3
3.Os
4.Sh NAME
5.Nm sqlite3_backup
6.Nd online backup object
7.Sh SYNOPSIS
8.In sqlite3.h
9.Vt typedef struct sqlite3_backup sqlite3_backup;
10.Sh DESCRIPTION
11The sqlite3_backup object records state information about an ongoing
12online backup operation.
13The sqlite3_backup object is created by a call to
14.Fn sqlite3_backup_init
15and is destroyed by a call to
16.Fn sqlite3_backup_finish .
17.Sh IMPLEMENTATION NOTES
18These declarations were extracted from the
19interface documentation at line 9107.
20.Bd -literal
21typedef struct sqlite3_backup sqlite3_backup;
22.Ed
23.Sh SEE ALSO
24.Xr sqlite3_backup_init 3
25