[6920] Cleaned up DatabaseImpl and added support for async queries with 3 parameters passed to the callback.

This commit is contained in:
Wyk3d 2008-12-19 15:50:58 +02:00
parent 162ca267f1
commit 5ba3796480
6 changed files with 126 additions and 117 deletions

View file

@ -104,7 +104,7 @@ class SqlQueryHolder
void SetSize(size_t size);
QueryResult* GetResult(size_t index);
void SetResult(size_t index, QueryResult *result);
void Execute(MaNGOS::IQueryCallback * callback, SqlDelayThread *thread, SqlResultQueue *queue);
bool Execute(MaNGOS::IQueryCallback * callback, SqlDelayThread *thread, SqlResultQueue *queue);
};
class SqlQueryHolderEx : public SqlOperation