mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-05 17:09:50 -06:00
Added an Insert statement
This commit is contained in:
18
include/dynamic/Insert.hpp
Normal file
18
include/dynamic/Insert.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user