mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-06-23 05:09:53 +00:00

Convert behavior ID to LWOOBJID length missed header fix sqlite field names sqlite brother
20 lines
751 B
C++
20 lines
751 B
C++
#include "IBehaviors.h"
|
|
|
|
#include "SQLiteDatabase.h"
|
|
|
|
void SQLiteDatabase::AddBehavior(const IBehaviors::Info& info) {
|
|
ExecuteInsert(
|
|
"INSERT INTO behaviors (behavior_info, character_id, behavior_id) VALUES (?, ?, ?) ON CONFLICT(behavior_id) DO UPDATE SET behavior_info = ?",
|
|
info.behaviorInfo, info.characterId, info.behaviorId, info.behaviorInfo
|
|
);
|
|
}
|
|
|
|
void SQLiteDatabase::RemoveBehavior(const LWOOBJID behaviorId) {
|
|
ExecuteDelete("DELETE FROM behaviors WHERE behavior_id = ?", behaviorId);
|
|
}
|
|
|
|
std::string SQLiteDatabase::GetBehavior(const LWOOBJID behaviorId) {
|
|
auto [_, result] = ExecuteSelect("SELECT behavior_info FROM behaviors WHERE behavior_id = ?", behaviorId);
|
|
return !result.eof() ? result.getStringField("behavior_info") : "";
|
|
}
|