summaryrefslogtreecommitdiff
path: root/static/netbsd/man3/sqlite3_backup.3
diff options
context:
space:
mode:
Diffstat (limited to 'static/netbsd/man3/sqlite3_backup.3')
-rw-r--r--static/netbsd/man3/sqlite3_backup.324
1 files changed, 24 insertions, 0 deletions
diff --git a/static/netbsd/man3/sqlite3_backup.3 b/static/netbsd/man3/sqlite3_backup.3
new file mode 100644
index 00000000..6c411495
--- /dev/null
+++ b/static/netbsd/man3/sqlite3_backup.3
@@ -0,0 +1,24 @@
+.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