Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Takmazov <vitalyster@gmail.com>2018-09-14 11:40:58 +0300
committerVitaly Takmazov <vitalyster@gmail.com>2018-09-17 09:17:26 +0300
commit9b5ec6eedb5accf5c83afd3f0e36121064a0fad5 (patch)
treed695d2a08c97e459a784ea2cf4af936fcb8b3305 /include
parentd7ffa366e13bc0af625cc665471fb40ccc361083 (diff)
MySQLBackend: prepared statement results buffering, fixes #183
* cleanup unused code * use mysql error constants instead of magic numbers
Diffstat (limited to 'include')
-rw-r--r--include/transport/MySQLBackend.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/transport/MySQLBackend.h b/include/transport/MySQLBackend.h
index 46a1d108..22c2100f 100644
--- a/include/transport/MySQLBackend.h
+++ b/include/transport/MySQLBackend.h
@@ -26,7 +26,8 @@
#include <map>
#include "transport/StorageBackend.h"
#include "transport/Config.h"
-#include "mysql.h"
+#include <mysql/mysql.h>
+#include <mysql/errmsg.h>
namespace Transport {