mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
7 lines
318 B
C++
7 lines
318 B
C++
|
#include "MySQLDatabase.h"
|
||
|
|
||
|
void MySQLDatabase::InsertNewBugReport(const IBugReports::Info& info) {
|
||
|
ExecuteInsert("INSERT INTO `bug_reports`(body, client_version, other_player_id, selection, reporter_id) VALUES (?, ?, ?, ?, ?)",
|
||
|
info.body, info.clientVersion, info.otherPlayer, info.selection, info.characterId);
|
||
|
}
|