aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Main.cpp
diff options
context:
space:
mode:
authorMachiavelli <none@none>2010-09-02 17:47:50 +0200
committerMachiavelli <none@none>2010-09-02 17:47:50 +0200
commit0117af4c37324eac2c70bc249899c19b8dcb7b80 (patch)
treee47c44854b8bca2bb5037bff0d8a16f53c1f1b8b /src/server/authserver/Main.cpp
parent39f901d5660136f69c6252f4a21153d9f5d0732b (diff)
Core/DBLayer:
- Implement deriviate classes of MySQLConnection for every database type (world, realm, characters) - Make DatabaseWorkerPool templatized and use the above mentioned classes as parameter - Implementation of the new types in code (This is in preparation of prepared statement interface) --HG-- branch : trunk
Diffstat (limited to 'src/server/authserver/Main.cpp')
-rw-r--r--src/server/authserver/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp
index d0698b10592..1e140e4e1c0 100644
--- a/src/server/authserver/Main.cpp
+++ b/src/server/authserver/Main.cpp
@@ -63,7 +63,7 @@ bool StartDB();
bool stopEvent = false; ///< Setting it to true stops the server
-DatabaseType LoginDatabase; ///< Accessor to the realm server database
+LoginDatabaseWorkerPool LoginDatabase; ///< Accessor to the realm server database
/// Handle realmd's termination signals
class RealmdSignalHandler : public Trinity::SignalHandler