Files
sqlgen/include/dynamic/Insert.hpp
2025-03-19 07:08:45 +01:00

19 lines
270 B
C++

#ifndef SQLGEN_DYNAMIC_INSERT_HPP_
#define SQLGEN_DYNAMIC_INSERT_HPP_
#include <string>
#include <vector>
#include "Table.hpp"
namespace sqlgen::dynamic {
struct Insert {
Table table;
std::vector<std::string> columns;
};
} // namespace sqlgen::dynamic
#endif