Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00031
00032 #pragma once
00033
00034 #ifdef __cplusplus_cli
00035 #pragma managed(push, off)
00036 #endif
00037
00038 #include "Database/db_command.h"
00039 #include "Database/db_connection.h"
00040 #include "Database/db_transaction.h"
00041 #include "Database/db_reader.h"
00042 #include "Database/db_value.h"
00043 #include "Database/db_command_provider.h"
00044 #include "Database/db_connection_provider.h"
00045 #include "Database/db_transaction_provider.h"
00046 #include "Database/db_reader_provider.h"
00047
00048 #ifdef __cplusplus_cli
00049 #pragma managed(pop)
00050 #endif
00051
00052 #if defined(_MSC_VER)
00053 #if !defined(_MT)
00054 #error Your application is set to link with the single-threaded version of the run-time library. Go to project settings, in the C++ section, and change it to multi-threaded.
00055 #endif
00056 #if !defined(_DEBUG)
00057 #if defined(CL_DLL)
00058 #pragma comment(lib, "clanDatabase-dll.lib")
00059 #elif defined(_DLL)
00060 #pragma comment(lib, "clanDatabase-static-mtdll.lib")
00061 #else
00062 #pragma comment(lib, "clanDatabase-static-mt.lib")
00063 #endif
00064 #else
00065 #if defined(CL_DLL)
00066 #pragma comment(lib, "clanDatabase-dll-debug.lib")
00067 #elif defined(_DLL)
00068 #pragma comment(lib, "clanDatabase-static-mtdll-debug.lib")
00069 #else
00070 #pragma comment(lib, "clanDatabase-static-mt-debug.lib")
00071 #endif
00072 #endif
00073 #endif