mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-03 16:09:47 -06:00
19 lines
270 B
C++
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
|