-
-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathOdsDetection.h
78 lines (71 loc) · 3.27 KB
/
OdsDetection.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* PROGRAM: JRD Backup and Restore Program
* MODULE: OdsDetection.h
* DESCRIPTION: Detecting the backup (source) or restore (target) ODS
*
* The contents of this file are subject to the Interbase Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy
* of the License at http://www.Inprise.com/IPL.html
*
* Software distributed under the License is distributed on an
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
* or implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code was created by Inprise Corporation
* and its predecessors. Portions created by Inprise Corporation are
* Copyright (C) Inprise Corporation.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*
*/
#ifndef BURP_ODSDETECTION_H
#define BURP_ODSDETECTION_H
/* Description of currently supported database formats:
DDL8 = 80, // stored procedures & exceptions & constraints
DDL9 = 90, // SQL roles
DDL10 = 100, // FIELD_PRECISION
DDL11 = 110, // rdb$description in rdb$roles and rdb$generators
// rdb$base_collation_name and rdb$specific_attributes in rdb$collations
// rdb$message enlarged to 1021.
DDL11_1 = 111, // rdb$relation_type in rdb$relations
// rdb$procedure_type in rdb$procedures
// rdb$valid_blr in rdb$triggers
// rdb$valid_blr in rdb$procedures
// rdb$default_value, rdb$default_source, rdb$collation_id,
// rdb$null_flag and rdb$parameter_mechanism in rdb$procedure_parameters
DDL11_2 = 112, // rdb$field_name and rdb$relation_name in rdb$procedure_parameters
// rdb$admin system role
// rdb$message enlarged to 1023.
DDL12_0 = 120 // rdb$engine_name and rdb$entrypoint in rdb$triggers
// rdb$package_name in rdb$dependencies
// rdb$engine_name, rdb$package_name and rdb$private_flag
// in rdb$functions
// rdb$package_name in rdb$function_arguments
// rdb$engine_name, rdb$entry_point, rdb$package_name
// and rdb$private_flag in rdb$procedures
// rdb$package_name in rdb$procedure_parameters
// rdb$package_name in mon$call_stack
// Table rdb$packages
// Type of rdb$triggers.rdb$trigger_type changed from SMALLINT to BIGINT
DDL13_0 = 130 // Table rdb$publications
// Table rdb$publication_tables
DDL13_1 = 131 // rdb$condition_blr / rdb$condition_source in rdb$indices
ASF: Engine that works with ODS11.1 and newer supports access to non-existent system fields.
Reads return NULL and writes do nothing.
*/
const int DB_VERSION_DDL8 = 80; // ods8 db, IB4
const int DB_VERSION_DDL9 = 90; // ods9 db, IB5
const int DB_VERSION_DDL10 = 100; // ods10 db, IB6, FB1, FB1.5
const int DB_VERSION_DDL11 = 110; // ods11 db, FB2
const int DB_VERSION_DDL11_1 = 111; // ods11.1 db, FB2.1
const int DB_VERSION_DDL11_2 = 112; // ods11.2 db, FB2.5
const int DB_VERSION_DDL12 = 120; // ods12.0 db, FB3.0
const int DB_VERSION_DDL13 = 130; // ods13.0 db, FB4.0
const int DB_VERSION_DDL13_1 = 131; // ods13.1 db, FB5.0
const int DB_VERSION_DDL14 = 140; // ods14.0 db, FB6.0
const int DB_VERSION_OLDEST_SUPPORTED = DB_VERSION_DDL8; // IB4.0 is ods8
void detectRuntimeODS();
#endif // BURP_ODSDETECTION_H