Chapter 7.  The DB_LSN Handle

#include <db.h>

typedef struct __typedef struct __db_lsn DB_LSN; ;  

The DB_LSN object is a log sequence number which specifies a unique location in a log file. A DB_LSN consists of two unsigned 32-bit integers -- one specifies the log file number, and the other specifies an offset in the log file.

Logging Subsystem and Related Methods