2023-12-30 22:42:11 +00:00
|
|
|
//SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
//SPDX-License-Identifier: GPL-3.0-or-later
|
2023-12-10 23:23:15 +00:00
|
|
|
|
2023-12-08 22:26:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-12-23 20:23:38 +00:00
|
|
|
#include <cstring>
|
2023-12-08 22:26:16 +00:00
|
|
|
#include <vector>
|
2023-12-23 20:23:38 +00:00
|
|
|
#include <tuple>
|
|
|
|
#include <any>
|
2023-12-08 22:26:16 +00:00
|
|
|
|
|
|
|
#include "mysql.h"
|
|
|
|
|
2023-12-29 17:40:00 +00:00
|
|
|
namespace DB {
|
2023-12-08 22:26:16 +00:00
|
|
|
class MySQL::Statement {
|
|
|
|
struct STMTDeleter {
|
|
|
|
void operator () (MYSQL_STMT* stmt) {
|
|
|
|
mysql_stmt_close(stmt);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
public:
|
|
|
|
Statement(MYSQL* connection, const char* statement);
|
|
|
|
|
2023-12-20 22:42:13 +00:00
|
|
|
void bind(void* value, enum_field_types type, bool usigned = false);
|
2023-12-08 22:26:16 +00:00
|
|
|
void execute();
|
2024-01-21 19:23:48 +00:00
|
|
|
unsigned int affectedRows();
|
2023-12-23 20:23:38 +00:00
|
|
|
std::vector<std::vector<std::any>> fetchResult();
|
2023-12-08 22:26:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<MYSQL_STMT, STMTDeleter> stmt;
|
|
|
|
std::vector<MYSQL_BIND> param;
|
|
|
|
};
|
2023-12-29 17:40:00 +00:00
|
|
|
}
|