mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-26 11:52:32 +01:00
16 lines
414 B
C++
16 lines
414 B
C++
#include "Define.h"
|
|
#include "Errors.h"
|
|
#include "Field.h"
|
|
#include "Log.h"
|
|
#include "MySQLConnection.h"
|
|
#include "PreparedStatement.h"
|
|
#include "QueryResult.h"
|
|
#include "SQLOperation.h"
|
|
#include "Transaction.h"
|
|
#ifdef _WIN32 // hack for broken mysql.h not including the correct winsock header for SOCKET definition, fixed in 5.7
|
|
#include <winsock2.h>
|
|
#endif
|
|
#include <mysql.h>
|
|
#include <string>
|
|
#include <vector>
|