1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Change MySQL header include path.

This commit is contained in:
Sandu Liviu Catalin 2021-08-22 19:16:31 +03:00
parent 21c9797d1a
commit b78b3e8ede
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
#ifdef SQMOD_POCO_HAS_MYSQL #ifdef SQMOD_POCO_HAS_MYSQL
#include <mysql.h> #include <mysql/mysql.h>
#else #else
#error Enable MySQL support in order to compile this library. #error Enable MySQL support in order to compile this library.
#endif #endif

View File

@ -13,7 +13,7 @@
#ifdef SQMOD_POCO_HAS_MYSQL #ifdef SQMOD_POCO_HAS_MYSQL
#include <Poco/Data/MySQL/Connector.h> #include <Poco/Data/MySQL/Connector.h>
// Used for string escape functionality // Used for string escape functionality
#include <mysql.h> #include <mysql/mysql.h>
#endif #endif
#ifdef SQMOD_POCO_HAS_POSTGRESQL #ifdef SQMOD_POCO_HAS_POSTGRESQL
#include <Poco/Data/PostgreSQL/Connector.h> #include <Poco/Data/PostgreSQL/Connector.h>