DarkflameServer/dDatabase/CDClientDatabase/CDClientTables/CDScriptComponentTable.cpp

40 lines
1.1 KiB
C++
Raw Normal View History

#include "CDScriptComponentTable.h"
void CDScriptComponentTable::LoadValuesFromDatabase() {
2022-07-28 13:39:57 +00:00
// First, get the size of the table
unsigned int size = 0;
auto tableSize = CDClientDatabase::ExecuteQuery("SELECT COUNT(*) FROM ScriptComponent");
while (!tableSize.eof()) {
size = tableSize.getIntField(0, 0);
tableSize.nextRow();
}
tableSize.finalize();
2022-07-28 13:39:57 +00:00
// Now get the data
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM ScriptComponent");
while (!tableData.eof()) {
CDScriptComponent entry;
entry.id = tableData.getIntField("id", -1);
entry.script_name = tableData.getStringField("script_name", "");
entry.client_script_name = tableData.getStringField("client_script_name", "");
2022-07-28 13:39:57 +00:00
this->entries.insert(std::make_pair(entry.id, entry));
2022-07-28 13:39:57 +00:00
tableData.nextRow();
}
tableData.finalize();
}
const CDScriptComponent& CDScriptComponentTable::GetByID(unsigned int id) {
std::map<unsigned int, CDScriptComponent>::iterator it = this->entries.find(id);
if (it != this->entries.end()) {
return it->second;
}
return m_ToReturnWhenNoneFound;
2022-07-28 13:39:57 +00:00
}