This structure contains information regarding calls to sqlurlog - Asynchronous Read Log. The read log information structure contains
information on the status of the call and the database log.
Table 71. Fields in the SQLU-RLOG-INFO Structure
Field Name | Data Type | Description |
---|---|---|
initialLSN | SQLU_LSN | Specifies the LSN value of the first log record written to the database after the first connect is issued. For more information on the SQLU_LSN structure, see SQLU-LSN. |
firstReadLSN | SQLU_LSN | Specifies the LSN value of the first log record read. |
lastReadLSN | SQLU_LSN | Specifies the LSN value of the last log record byte read. |
curActiveLSN | SQLU_LSN | Specifies the LSN value of the current active log. |
logRecsWritten | sqluint32 | Specifies the number of log records written to the buffer. |
logBytesWritten | sqluint32 | Specifies the number of bytes written to the buffer. |
Language Syntax
C Structure
typedef SQL_STRUCTURE SQLU_RLOG_INFO { SQLU_LSN initialLSN ; SQLU_LSN firstReadLSN ; SQLU_LSN lastReadLSN ; SQLU_LSN curActiveLSN ; sqluint32 logRecsWritten ; sqluint32 logBytesWritten ; } SQLU_RLOG_INFO; |