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 60. 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 | UNSIGNED LONG | Specifies the number of log records written to the buffer. |
| logBytesWritten | UNSIGNED LONG | 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 ;
unsigned long logRecsWritten ;
unsigned long logBytesWritten ;
} SQLU_RLOG_INFO;
|