1 | /* |
2 | * Legal Notice |
3 | * |
4 | * This document and associated source code (the "Work") is a part of a |
5 | * benchmark specification maintained by the TPC. |
6 | * |
7 | * The TPC reserves all right, title, and interest to the Work as provided |
8 | * under U.S. and international laws, including without limitation all patent |
9 | * and trademark rights therein. |
10 | * |
11 | * No Warranty |
12 | * |
13 | * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION |
14 | * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE |
15 | * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER |
16 | * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, |
17 | * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, |
18 | * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR |
19 | * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF |
20 | * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE. |
21 | * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, |
22 | * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT |
23 | * WITH REGARD TO THE WORK. |
24 | * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO |
25 | * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE |
26 | * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS |
27 | * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, |
28 | * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, |
29 | * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT |
30 | * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD |
31 | * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. |
32 | * |
33 | * Contributors |
34 | * - Sergey Vasilevskiy |
35 | */ |
36 | |
37 | #ifndef EGEN_LOADER_STDAFX_H |
38 | #define EGEN_LOADER_STDAFX_H |
39 | |
40 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers |
41 | |
42 | #include <cstdio> |
43 | #include <cassert> |
44 | #include <fstream> |
45 | #include <set> |
46 | #include <map> |
47 | #include <iostream> |
48 | #include <algorithm> |
49 | #include <string> |
50 | #include <vector> |
51 | |
52 | #ifdef COMPILE_ODBC_LOAD |
53 | #ifdef WIN32 |
54 | #include <windows.h> |
55 | #endif // WIN32 |
56 | // ODBC headers |
57 | #include <sql.h> |
58 | #include <sqlext.h> |
59 | #include <odbcss.h> |
60 | #endif // COMPILE_ODBC_LOAD |
61 | |
62 | // TODO: reference additional headers your program requires here |
63 | using namespace std; |
64 | |
65 | #include "EGenTables_stdafx.h" |
66 | #include "EGenBaseLoader_stdafx.h" |
67 | #include "EGenGenerateAndLoad_stdafx.h" |
68 | |
69 | // Include one or more load types. |
70 | #include "NullLoad_stdafx.h" |
71 | #ifdef COMPILE_FLAT_FILE_LOAD |
72 | #include "FlatFileLoad_stdafx.h" |
73 | #endif |
74 | #ifdef COMPILE_ODBC_LOAD |
75 | #include "win/ODBCLoad_stdafx.h" |
76 | #endif |
77 | #ifdef COMPILE_CUSTOM_LOAD |
78 | #include "custom/CustomLoad_stdafx.h" |
79 | #endif |
80 | #ifdef CUSTOM_LOAD_INCLUDE |
81 | #define COMPILE_CUSTOM_LOAD |
82 | #include CUSTOM_LOAD_INCLUDE |
83 | #endif |
84 | |
85 | // Generic Error Codes |
86 | #define ERROR_BAD_OPTION 1 |
87 | #define ERROR_INPUT_FILE 2 |
88 | #define ERROR_INVALID_OPTION_VALUE 3 |
89 | |
90 | #endif // #ifndef EGEN_LOADER_STDAFX_H |
91 | |