diff options
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rwxr-xr-x | src/server/shared/Database/MySQLConnection.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp index 20c614b5333..de05ee311db 100755 --- a/src/server/shared/Database/MySQLConnection.cpp +++ b/src/server/shared/Database/MySQLConnection.cpp @@ -34,20 +34,11 @@ MySQLConnection::MySQLConnection(MySQLConnectionInfo& connInfo) : m_queue(NULL), -m_worker(NULL), m_Mysql(NULL), m_connectionInfo(connInfo) { } -MySQLConnection::MySQLConnection(ACE_Activation_Queue* queue, MySQLConnectionInfo& connInfo) : -m_queue(queue), -m_Mysql(NULL), -m_connectionInfo(connInfo) -{ - m_worker = new DatabaseWorker(m_queue, this); -} - MySQLConnection::~MySQLConnection() { ASSERT (m_Mysql); /// MySQL context must be present at this point |