aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared
AgeCommit message (Collapse)Author
2011-05-24Core/DBLayer: Fix transaction crash.Machiavelli
2011-05-23Fix crash added in 402198Machiavelli
2011-05-23Core/DBLayer: Proper core-side handling of MySQL errno 1213 to prevent a ↵Machiavelli
snowballeffect (until innodb_lock_wait_timeout)
2011-05-13Core: Remove some warnings here and thereclick
2011-05-07Core/Guilds: Use blocking queries at guild loading to ensure invalid data is ↵Shauren
removed before processing, removed prepared statements in loading guilds
2011-05-07Core: Warning fixesShauren
2011-05-03Core/AuctionHouse: Delete expired auctions at startup.MrSmite
2011-04-29Add spaces after commasleak
2011-04-28Removing SQLStorage class leftoversleak
2011-04-28Core/ObjectMgr: Refactor sCreatureStorageleak
2011-04-28Core/ObjectMgr: Refactor sGOStorageleak
2011-04-28Core/ObjectMgr: Refactor sCreatureInfoAddonStorageleak
2011-04-28Core/ObjectMgr: Refactor sCreatureDataAddonStorageleak
2011-04-28Core/ObjectMgr: Refactor sItemStorageleak
2011-04-28Core/ObjectMgr: Refactor sEquipmentStorageleak
2011-04-28Core/ObjectMgr: Refactor sInstanceTemplateleak
2011-04-28Core/ObjectMgr: Refactor sPageTextStoreleak
2011-04-28Core/ObjectMgr: Refactor sCreatureModelStorageleak
2011-04-28Core: get rid of the revision-id once and for all - it's not useful in a ↵click
DVCS at all
2011-04-27Core/Buildsystem: Update copyright-headers for 2011, and adjust with the ↵click
correct teamname as well.
2011-04-26Core/DBSchema: Corrected query retrieving character count on accountShauren
2011-04-25Core/World: Fixed realm character count queries getting lostShauren
2011-04-22Core: Added definitions to mark methods as deprecated and marked ↵Shauren
DoCompleteAchievement as such
2011-04-19Core/GM System: rename columns of gm_surveys, gm_subsurveys, gm_tickets and ↵Azazel
lag_reports tables to lowerCamel, move queries to prepared statements and refactor the code of TicketMgr.
2011-04-13Core/CharDB cleanup: change creature_respawn and gameobject_respawn column ↵Azazel
names to lowerCamel, rename `instance` column to `instanceId` and move all queries to these tables to prepared statements. Fix import error in character_database.sql.
2011-04-11Core/CharDB Cleanup: alter `corpse` table making column names lowerCamel and ↵Azazel
move all queries to prepared statements. NOTICE: column can be named `guid` only if it represents character guid. All other guids will be renamed to reflect their purpose (like corpseGuid in this specific case)
2011-04-08Core/Arena: Move personalRating to arena_team_memberleak
2011-04-08Core/CharDB Cleanup: alter character_homebind table making column names ↵Azazel
lowerCamel and move all queries to prepared statements.
2011-04-08Core/CharDB Cleanup: alter character_battleground_data table making column ↵Azazel
names lowerCamel and move all queries to prepared statements.
2011-04-08Core/DBLayer: add template parameter to QueryCallback classes to make it ↵Azazel
work with both QueryResult and PreparedQueryResult (will be used later).
2011-04-07 Core/DBLayer: make use of return result of Connection::Open method and ↵Azazel
allow core to output all the errors in prepared statements instead of aborting on first error.
2011-04-05Core/Arenas: Refactor arena code and db layoutleak
2011-03-20Core/Shared: Removed #ifdef HAVE_ACE_STACK_TRACE_H which is only required ↵Shauren
for old ACE versions
2011-03-19Fixed build without PCHShauren
2011-03-18Core/Storage: Fixed startup assertion failuresShauren
2011-03-18Core/Storage: Readded missing record size calculations for SQL storageShauren
2011-03-18Core/Storage: A few more improvements to code style, corrected some engrish ↵Shauren
and fixed compile
2011-03-18Core/Storage: Add some sanity checks and better define some SQL and DBCrunningnak3d
storage format field types. * Also LOTS of whitespace cleanup * Some Trinity code style applied * Some if / else if -> switch / case * Original ideal for patch by Vinolentus
2011-03-18Core/GameEventMgr: Reduce memory waste caused by gaps in game_event entry IDsleak
2011-03-11CharDB Schema/Cleanup: cleanup channels table:Azazel
* rename columns (remove m_ prefix and convert to lowerCamel case); * rename prepared statements to conform to standards (there is no CLEAN statement).
2011-03-08More warning fixesShauren
2011-03-08Core: Fixed warnings:Shauren
C4100: 'variable' : unreferenced formal parameter C4701: potentially uninitialized local variable C4389: '!=' : signed/unsigned mismatch C4245: 'argument' : conversion from 'X' to 'Y', signed/unsigned mismatch
2011-03-01Core/Groups: Forgotten changes from group id recycling reimplementation, ↵leak
also cleanup queries should be sync (and due to their one time execution have no need to be prepared statements)
2011-02-27Core/Groups: Reimplement group id recyclingleak
2011-02-25Really fix the crash caused by wrong prepared statement typesMachiavelli
2011-02-24Core: Fix crash on login added in 20ab3e4bdace5da53300Machiavelli
2011-02-25Core/Misc: rename some prepared statements to conform to naming standards ↵Azazel
(there are no CLEAN statements, there are DEL ones)
2011-02-25CharDB Schema/Cleanup: cleanup character_tutorial table:Azazel
* rename table to account_tutorial, because it holds account specific data; * rename column account to accountId; * introduce prepared statements for table.
2011-02-25CharDB Schema/Cleanup: cleanup account_data and character_account_data tables:Azazel
* rename column account to accountId; * introduce prepared statements for both tables.
2011-02-22Core/Globals: Cleanup queries should be blocking if we want to be sure to ↵leak
load clean data