mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-06 23:07:59 +00:00
30 lines
1016 B
C
30 lines
1016 B
C
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
* Copyright (C) 2021+ WarheadCore <https://github.com/WarheadCore>
|
|
*/
|
|
|
|
#ifndef DATABASEENV_H
|
|
#define DATABASEENV_H
|
|
|
|
#include "DatabaseWorkerPool.h"
|
|
#include "Define.h"
|
|
|
|
#include "Implementation/CharacterDatabase.h"
|
|
#include "Implementation/LoginDatabase.h"
|
|
#include "Implementation/WorldDatabase.h"
|
|
|
|
#include "Field.h"
|
|
#include "PreparedStatement.h"
|
|
#include "QueryCallback.h"
|
|
#include "QueryResult.h"
|
|
#include "Transaction.h"
|
|
|
|
/// Accessor to the world database
|
|
AC_DATABASE_API extern DatabaseWorkerPool<WorldDatabaseConnection> WorldDatabase;
|
|
/// Accessor to the character database
|
|
AC_DATABASE_API extern DatabaseWorkerPool<CharacterDatabaseConnection> CharacterDatabase;
|
|
/// Accessor to the realm/login database
|
|
AC_DATABASE_API extern DatabaseWorkerPool<LoginDatabaseConnection> LoginDatabase;
|
|
|
|
#endif
|