aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/MySQLConnection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rw-r--r--src/server/shared/Database/MySQLConnection.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp
index cd28474c63d..24dcb166d49 100644
--- a/src/server/shared/Database/MySQLConnection.cpp
+++ b/src/server/shared/Database/MySQLConnection.cpp
@@ -16,10 +16,15 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include <mysql.h>
+#include "Common.h"
+#include "QueryResult.h"
+#include "SQLOperation.h"
#include "MySQLConnection.h"
#include "DatabaseWorker.h"
-#include "Utilities/Util.h"
-#include "Utilities/Timer.h"
+#include "Log.h"
+#include "Util.h"
+#include "Timer.h"
MySQLConnection::MySQLConnection() :
m_Mysql(NULL)
@@ -241,4 +246,4 @@ void MySQLConnection::RollbackTransaction()
void MySQLConnection::CommitTransaction()
{
Execute("COMMIT");
-} \ No newline at end of file
+}