mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 20:58:22 +00:00
18 lines
522 B
C++
18 lines
522 B
C++
|
#include "MySQLDatabase.h"
|
||
|
|
||
|
std::optional<uint32_t> MySQLDatabase::GetCurrentPersistentId() {
|
||
|
auto result = ExecuteSelect("SELECT last_object_id FROM object_id_tracker");
|
||
|
if (!result->next()) {
|
||
|
return std::nullopt;
|
||
|
}
|
||
|
return result->getUInt("last_object_id");
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::InsertDefaultPersistentId() {
|
||
|
ExecuteInsert("INSERT INTO object_id_tracker VALUES (1);");
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::UpdatePersistentId(const uint32_t newId) {
|
||
|
ExecuteUpdate("UPDATE object_id_tracker SET last_object_id = ?;", newId);
|
||
|
}
|