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 "Sqlite/sqlite_connection.h"
00039
00040 #ifdef __cplusplus_cli
00041 #pragma managed(pop)
00042 #endif
00043
00044 #if defined(_MSC_VER)
00045 #if !defined(_MT)
00046 #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.
00047 #endif
00048 #if !defined(_DEBUG)
00049 #if defined(CL_DLL)
00050 #pragma comment(lib, "clanSqlite-dll.lib")
00051 #pragma comment(lib, "sqlite-dll.lib")
00052 #elif defined(_DLL)
00053 #pragma comment(lib, "clanSqlite-static-mtdll.lib")
00054 #pragma comment(lib, "sqlite-static-mtdll.lib")
00055 #else
00056 #pragma comment(lib, "clanSqlite-static-mt.lib")
00057 #pragma comment(lib, "sqlite-static-mt.lib")
00058 #endif
00059 #else
00060 #if defined(CL_DLL)
00061 #pragma comment(lib, "clanSqlite-dll-debug.lib")
00062 #pragma comment(lib, "sqlite-dll-debug.lib")
00063 #elif defined(_DLL)
00064 #pragma comment(lib, "clanSqlite-static-mtdll-debug.lib")
00065 #pragma comment(lib, "sqlite-static-mtdll-debug.lib")
00066 #else
00067 #pragma comment(lib, "clanSqlite-static-mt-debug.lib")
00068 #pragma comment(lib, "sqlite-static-mt-debug.lib")
00069 #endif
00070 #endif
00071 #endif