on 2012 Dec 05 9:42 AM
In the ASA 12 dbtools.h, it appears that two enum identifiers are missing? a_db_version
and a_chkpt_log_type
Under ASA 11 dbtools.h, you had this...
typedef enum { BACKUP_CHKPT_LOG_COPY = 0, BACKUP_CHKPT_LOG_NOCOPY, BACKUP_CHKPT_LOG_RECOVER, BACKUP_CHKPT_LOG_AUTO, BACKUP_CHKPT_LOG_DEFAULT } a_chkpt_log_type; typedef enum { VERSION_UNKNOWN, VERSION_PRE_10, VERSION_10, VERSION_11 } a_db_version;
Under ASA12 you get this....
enum { BACKUP_CHKPT_LOG_COPY = 0, BACKUP_CHKPT_LOG_NOCOPY, BACKUP_CHKPT_LOG_RECOVER, BACKUP_CHKPT_LOG_AUTO, BACKUP_CHKPT_LOG_DEFAULT }; enum { VERSION_UNKNOWN = 0, VERSION_PRE_10 = 9, VERSION_10 = 10, VERSION_11 = 11, VERSION_12 = 12 };
Am I missing somthing? I have ASA 12.00.00.2483 Thanks. Jerry
This is correct. These structures are also documented differently between version 11 and 12:
a_db_version
enumeration: http://dcx.sybase.com/index.html#1101/en/dbprogramming_en11/dbt-chkpt-log-type-enum1.htmla_ckpt_log_type
enumeration: http://dcx.sybase.com/index.html#1101/en/dbprogramming_en11/dbt-a-db-version-enum1.htmlYou will also notice in the version 12 documentation there are other enumerations:
a_chkpt_log_type
in 11)dbtran_userlist_type
in 11)a_validate_type
in 11)a_db_version
in 11)You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
69 | |
11 | |
10 | |
10 | |
9 | |
9 | |
6 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.