|
relx 0.1.0
A Modern C++23 Type-Safe SQL Query Builder
|
Represents a single column-value pair for an INSERT statement. More...
#include <relx/query/insert.hpp>
Public Member Functions | |
| InsertItem (ColumnRef< Column > col, ValExpr val) | |
| std::string | column_name () const |
| std::string | value_sql () const |
| std::vector< std::string > | bind_params () const |
Public Attributes | |
| ColumnRef< Column > | column |
| ValExpr | value |
Represents a single column-value pair for an INSERT statement.
| Column | The column type |
| ValExpr | The value expression type |
Definition at line 25 of file insert.hpp.
|
inline |
Definition at line 30 of file insert.hpp.
|
inline |
Definition at line 36 of file insert.hpp.
|
inline |
Definition at line 32 of file insert.hpp.
|
inline |
Definition at line 34 of file insert.hpp.
| ColumnRef<Column> relx::query::InsertItem< Column, ValExpr >::column |
Definition at line 26 of file insert.hpp.
| ValExpr relx::query::InsertItem< Column, ValExpr >::value |
Definition at line 27 of file insert.hpp.