Return proper MySQL connection for syncrhonous requests based on calling thread instead of bundled connection.

--HG--
branch : trunk
This commit is contained in:
Machiavelli
2010-08-20 12:44:08 +02:00
parent 24d752e782
commit a3270e79e3
2 changed files with 4 additions and 2 deletions

View File

@@ -26,7 +26,9 @@
#include "Timer.h"
MySQLConnection::MySQLConnection() :
m_Mysql(NULL)
m_Mysql(NULL),
m_worker(NULL),
m_queue(NULL)
{
}