aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/DataStores
diff options
context:
space:
mode:
authorQAston <none@none>2010-07-31 23:39:03 +0200
committerQAston <none@none>2010-07-31 23:39:03 +0200
commit73b481073d1bd4fe4158bd10d2d3aa129eb6db30 (patch)
tree02eb3085cf3d5cc1495f2a33b5ad1d6b1d076305 /src/server/shared/DataStores
parente0af5f9220457a222d43ddc487b8e1d35aae2392 (diff)
*Fix talent Will of the NEcropolis
*Backout unintentional change from ra299f0b248. --HG-- branch : trunk
Diffstat (limited to 'src/server/shared/DataStores')
-rw-r--r--src/server/shared/DataStores/DBCStore.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/shared/DataStores/DBCStore.h b/src/server/shared/DataStores/DBCStore.h
index a1a8413b6d6..22c77fadb27 100644
--- a/src/server/shared/DataStores/DBCStore.h
+++ b/src/server/shared/DataStores/DBCStore.h
@@ -85,14 +85,14 @@ class DBCStorage
Field *fields = NULL;
QueryResult_AutoPtr result = QueryResult_AutoPtr(NULL);
// Load data from sql
- if (false/*sql*/)
+ if (sql)
{
std::string query = "SELECT * FROM " + sql->sqlTableName;
if (sql->indexPos >= 0)
query +=" ORDER BY " + *sql->indexName + " DESC";
query += ";";
- /*
+
result = WorldDatabase.Query(query.c_str());
if (result)
{
@@ -108,7 +108,7 @@ class DBCStorage
sLog.outError("Invalid index pos for dbc:'%s'", sql->sqlTableName.c_str());
return false;
}
- }*/
+ }
}
char * sqlDataTable;
fieldCount = dbc.GetCols();