|
Lightweight 0.20260522.0
|
SqlQualifiedTableColumnName represents a column name qualified with a table name. More...
#include <Utils.hpp>
Public Member Functions | |
| constexpr std::weak_ordering | operator<=> (SqlQualifiedTableColumnName const &) const noexcept=default |
| Three-way comparison operator. | |
Public Attributes | |
| std::string_view | tableName |
| The table name. | |
| std::string_view | columnName |
| The column name. | |
SqlQualifiedTableColumnName represents a column name qualified with a table name.
This is the single structural representation of a table.column reference used throughout the query builder API. The builder is responsible for quoting; do not pre-quote the values stored here.
| std::string_view Lightweight::SqlQualifiedTableColumnName::tableName |
The table name.
Definition at line 229 of file Utils.hpp.
Referenced by Lightweight::SqlSelectQueryBuilder::Fields(), and Lightweight::SqlJoinConditionBuilder::Operator().
| std::string_view Lightweight::SqlQualifiedTableColumnName::columnName |
The column name.
Definition at line 231 of file Utils.hpp.
Referenced by Lightweight::SqlJoinConditionBuilder::Operator().