mirror of
https://github.com/getml/sqlgen.git
synced 2026-02-15 05:08:40 -06:00
18 lines
297 B
C++
18 lines
297 B
C++
#ifndef SQLGEN_MYSQL_EXEC_HPP_
|
|
#define SQLGEN_MYSQL_EXEC_HPP_
|
|
|
|
#include <mysql.h>
|
|
|
|
#include <string>
|
|
|
|
#include "../Ref.hpp"
|
|
#include "../Result.hpp"
|
|
|
|
namespace sqlgen::mysql {
|
|
|
|
Result<Nothing> exec(const Ref<MYSQL>& _conn, const std::string& _sql) noexcept;
|
|
|
|
} // namespace sqlgen::mysql
|
|
|
|
#endif
|