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 #if _MSC_VER > 1000
00035 #pragma once
00036 #endif
00037
00038 #include "MySQL/mysql_connection.h"
00039
00040 #if defined (_MSC_VER)
00041 #if defined (CL_DLL)
00042 #if !defined (_DEBUG)
00043 #pragma comment(lib, "clanMySQL-dll.lib")
00044 #else
00045 #pragma comment(lib, "clanMySQL-dll-debug.lib")
00046 #endif
00047 #elif defined (CL_STATIC_MTDLL)
00048 #if !defined (_DEBUG)
00049 #pragma comment(lib, "clanMySQL-static-mtdll.lib")
00050 #else
00051 #pragma comment(lib, "clanMySQL-static-mtdll-debug.lib")
00052 #endif
00053 #pragma comment(lib, "mysql.lib")
00054 #else
00055 #if !defined (_DEBUG)
00056 #pragma comment(lib, "clanMySQL-static-mt.lib")
00057 #else
00058 #pragma comment(lib, "clanMySQL-static-mt-debug.lib")
00059 #endif
00060 #pragma comment(lib, "mysql.lib")
00061 #endif
00062 #endif
00063