a_sysinfo structure

Holds information needed for dbinfo and dbunload utilities using the DBTools library.

typedef struct a_sysinfo {
    a_bit_field     valid_data          : 1;
    a_bit_field     blank_padding       : 1;
    a_bit_field     case_sensitivity    : 1;
    a_bit_field     encryption          : 1;
    char            default_collation[11];
    unsigned short  page_size;
} a_sysinfo;
Members
Member Description
valid_date Bit-field indicating whether the following values are set.
blank_padding 1 if blank padding is used in this database, 0 otherwise.
case_sensitivity 1 if the database is case sensitive, 0 otherwise.
encryption 1 if the database is encrypted, 0 otherwise.
default_collation The collation sequence for the database.
page_size The page size for the database.
See also