comparison Core/SQLite/Statement.cpp @ 1226:3f62e1269cca

fixes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 19 Nov 2014 11:15:34 +0100
parents 410c27e04a23
children 63d47b1fa239
comparison
equal deleted inserted replaced
1225:4c649dbeb61a 1226:3f62e1269cca
35 **/ 35 **/
36 36
37 37
38 #if ORTHANC_SQLITE_STANDALONE != 1 38 #if ORTHANC_SQLITE_STANDALONE != 1
39 #include "../PrecompiledHeaders.h" 39 #include "../PrecompiledHeaders.h"
40 #include <glog/logging.h>
41 #endif 40 #endif
42 41
43 #include "Statement.h" 42 #include "Statement.h"
44 #include "Connection.h" 43 #include "Connection.h"
45 44
46 #include <sqlite3.h> 45 #include <sqlite3.h>
47 #include <string.h> 46 #include <string.h>
48 #include <stdio.h> 47 #include <stdio.h>
49 #include <algorithm> 48 #include <algorithm>
49
50 #if ORTHANC_SQLITE_STANDALONE != 1
51 #include <glog/logging.h>
52 #endif
50 53
51 #if defined(_MSC_VER) 54 #if defined(_MSC_VER)
52 #define snprintf _snprintf 55 #define snprintf _snprintf
53 #endif 56 #endif
54 57