KDB deferred table open modes

>Defer open enum

Defer open enum

This enumeration lists the values possible for the _KDB_CONN_ATTR_DEFER_OPEN connection handle attribute which controls whether tables should be opened in KI_OPEN or have the open deferred until the first access.

The attribute can be set with KI_CONNECT_SET_ATTR and inspected with KI_CONNECT_GET_ATTR.

DEF ENUM enumeration name KDB_DEFER_ENUM

Enumeration ValueValueDescription
_KDB_IMMEDIATE_OPEN0x0Open table immediately in KI_OPEN
_KDB_DEFER_OPEN0x1Check table exists in KI_OPEN but open on first access
_KDB_DEFER_FULLY0x2Do not check that table exists in KI_OPEN but open on first access

Back to the list of Enumerations and Constants