Name

sqlite3_backup_remaining() — Get the number of pages remaining in a backup [EXP]

Definition

int sqlite3_backup_remaining( sqlite3_backup* backup );
backup

An online backup handle.

Returns

The number of pages remaining in the backup process.

Description

This function is used to get the number of pages that still need to be backed up. This value is updated when sqlite3_backup_step() is called and may not reflect recent activity on the source database.

See Also

sqlite3_backup_pagecount(), sqlite3_backup_step()