mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
20 lines
651 B
C++
20 lines
651 B
C++
|
#include "MySQLDatabase.h"
|
||
|
|
||
|
std::string MySQLDatabase::GetCharacterXml(const uint32_t charId) {
|
||
|
auto result = ExecuteSelect("SELECT xml_data FROM charxml WHERE id = ? LIMIT 1;", charId);
|
||
|
|
||
|
if (!result->next()) {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
return result->getString("xml_data").c_str();
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::UpdateCharacterXml(const uint32_t charId, const std::string_view lxfml) {
|
||
|
ExecuteUpdate("UPDATE charxml SET xml_data = ? WHERE id = ?;", lxfml, charId);
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::InsertCharacterXml(const uint32_t characterId, const std::string_view lxfml) {
|
||
|
ExecuteInsert("INSERT INTO `charxml` (`id`, `xml_data`) VALUES (?,?)", characterId, lxfml);
|
||
|
}
|