mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 12:48:20 +00:00
0c4108e730
yahoo
20 lines
730 B
C++
20 lines
730 B
C++
#include "IBehaviors.h"
|
|
|
|
#include "MySQLDatabase.h"
|
|
|
|
void MySQLDatabase::AddBehavior(const IBehaviors::Info& info) {
|
|
ExecuteInsert(
|
|
"INSERT INTO behaviors (behavior_info, character_id, behavior_id) VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE behavior_info = ?",
|
|
info.behaviorInfo, info.characterId, info.behaviorId, info.behaviorInfo
|
|
);
|
|
}
|
|
|
|
void MySQLDatabase::RemoveBehavior(const int32_t behaviorId) {
|
|
ExecuteDelete("DELETE FROM behaviors WHERE behavior_id = ?", behaviorId);
|
|
}
|
|
|
|
std::string MySQLDatabase::GetBehavior(const int32_t behaviorId) {
|
|
auto result = ExecuteSelect("SELECT behavior_info FROM behaviors WHERE behavior_id = ?", behaviorId);
|
|
return result->next() ? result->getString("behavior_info").c_str() : "";
|
|
}
|