Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Sqlite3.Backup
SourceType of a backup between two databases
init ~dst ~dst_name ~src ~src_name
initializes a backup from the database src
/src_name
to the database dst
/dst_name
.
step backup pagecount
will copy up to pagecount
pages between the associated databases of backup
.
finish backup
destroys the association backup
; this is to be called after step
returns SQLITE_DONE
.
remaining backup
returns the number of pages still to be backed up in backup
.