Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlUpdateQueryBuilder Class Referencefinal

Query builder for building UPDATE ... queries. More...

#include <Update.hpp>

Inheritance diagram for SqlUpdateQueryBuilder:
SqlWhereClauseBuilder< SqlUpdateQueryBuilder >

Public Member Functions

 SqlUpdateQueryBuilder (SqlQueryFormatter const &formatter, std::string table, std::string tableAlias, std::vector< SqlVariant > *inputBindings) noexcept
 
SqlSearchCondition & SearchCondition () noexcept
 
SqlQueryFormatter const & Formatter () const noexcept
 Returns the SQL query formatter.
 
template<typename ColumnValue >
SqlUpdateQueryBuilderSet (std::string_view columnName, ColumnValue const &value)
 Adds a single column to the SET clause.
 
template<std::size_t N>
SqlUpdateQueryBuilderSet (std::string_view columnName, char const (&value)[N])
 Adds a single column to the SET clause with the value being a string literal.
 
SqlUpdateQueryBuilderSet (std::string_view columnName, MFCStringLike auto const *value)
 Adds a single column to the SET clause with the value being a MFC like CString.
 
std::string ToSql () const
 Finalizes building the query as UPDATE ... query.
 
- Public Member Functions inherited from SqlWhereClauseBuilder< SqlUpdateQueryBuilder >
SqlUpdateQueryBuilderAnd () noexcept
 Indicates, that the next WHERE clause should be AND-ed (default).
 
SqlUpdateQueryBuilderOr () noexcept
 Indicates, that the next WHERE clause should be OR-ed.
 
SqlUpdateQueryBuilderNot () noexcept
 Indicates, that the next WHERE clause should be negated.
 
SqlUpdateQueryBuilderWhereRaw (std::string_view sqlConditionExpression)
 Constructs or extends a raw WHERE clause.
 
SqlUpdateQueryBuilderWhere (ColumnName const &columnName, std::string_view binaryOp, T const &value)
 Constructs or extends a WHERE clause to test for a binary operation.
 
SqlUpdateQueryBuilderWhere (ColumnName const &columnName, std::string_view binaryOp, SubSelectQuery const &value)
 Constructs or extends a WHERE clause to test for a binary operation for RHS as sub-select query.
 
SqlUpdateQueryBuilderWhere (ColumnName const &columnName, std::string_view binaryOp, char const(&value)[N])
 Constructs or extends a WHERE clause to test for a binary operation for RHS as string literal.
 
SqlUpdateQueryBuilderWhere (ColumnName const &columnName, T const &value)
 Constructs or extends a WHERE clause to test for equality.
 
SqlUpdateQueryBuilderWhere (Callable const &callable)
 Constructs or extends a WHERE/AND clause to test for a group of values.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhere (ColumnName const &columnName, T const &value)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhere (Callable const &callable)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhere (ColumnName const &columnName, std::string_view binaryOp, char const(&value)[N])
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhere (ColumnName const &columnName, std::string_view binaryOp, T const &value)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhere (ColumnName const &columnName, std::string_view binaryOp, SubSelectQuery const &value)
 
SqlUpdateQueryBuilderOrWhere (ColumnName const &columnName, std::string_view binaryOp, T const &value)
 Constructs or extends a WHERE/OR clause to test for a binary operation.
 
SqlUpdateQueryBuilderOrWhere (ColumnName const &columnName, T const &value)
 Constructs or extends an WHERE/OR clause to test for equality.
 
SqlUpdateQueryBuilderOrWhere (Callable const &callable)
 Constructs or extends an WHERE/OR clause to test for a group of values.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderOrWhere (ColumnName const &columnName, T const &value)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderOrWhere (Callable const &callable)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderOrWhere (ColumnName const &columnName, std::string_view binaryOp, T const &value)
 
SqlUpdateQueryBuilderWhereIn (ColumnName const &columnName, InputRange const &values)
 Constructs or extends an WHERE/OR clause to test for a value, satisfying std::ranges::input_range.
 
SqlUpdateQueryBuilderWhereIn (ColumnName const &columnName, std::initializer_list< T > const &values)
 Constructs or extends an WHERE/OR clause to test for a value, satisfying std::initializer_list.
 
SqlUpdateQueryBuilderWhereIn (ColumnName const &columnName, SubSelectQuery const &subSelectQuery)
 Constructs or extends an WHERE/OR clause to test for a value, satisfying a sub-select query.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereIn (ColumnName const &columnName, InputRange const &values)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereIn (ColumnName const &columnName, std::initializer_list< T > const &values)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereIn (ColumnName const &columnName, SubSelectQuery const &subSelectQuery)
 
SqlUpdateQueryBuilderWhereNull (ColumnName const &columnName)
 Constructs or extends an WHERE/OR clause to test for a value to be NULL.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereNull (ColumnName const &columnName)
 
SqlUpdateQueryBuilderWhereNotNull (ColumnName const &columnName)
 Constructs or extends a WHERE clause to test for a value being not null.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereNotNull (ColumnName const &columnName)
 
SqlUpdateQueryBuilderWhereNotEqual (ColumnName const &columnName, T const &value)
 Constructs or extends a WHERE clause to test for a value being equal to another column.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereNotEqual (ColumnName const &columnName, T const &value)
 
SqlUpdateQueryBuilderWhereTrue (ColumnName const &columnName)
 Constructs or extends a WHERE clause to test for a value being true.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereTrue (ColumnName const &columnName)
 
SqlUpdateQueryBuilderWhereFalse (ColumnName const &columnName)
 Constructs or extends a WHERE clause to test for a value being false.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereFalse (ColumnName const &columnName)
 
SqlUpdateQueryBuilderWhereColumn (LeftColumn const &left, std::string_view binaryOp, RightColumn const &right)
 Construts or extends a WHERE clause to test for a binary operation between two columns.
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderWhereColumn (LeftColumn const &left, std::string_view binaryOp, RightColumn const &right)
 
SqlUpdateQueryBuilderInnerJoin (std::string_view joinTable, std::string_view joinColumnName, SqlQualifiedTableColumnName onOtherColumn)
 Constructs an INNER JOIN clause.
 
SqlUpdateQueryBuilderInnerJoin (std::string_view joinTable, std::string_view joinColumnName, std::string_view onMainTableColumn)
 Constructs an INNER JOIN clause.
 
SqlUpdateQueryBuilderInnerJoin (std::string_view joinTable, OnChainCallable const &onClauseBuilder)
 Constructs an INNER JOIN clause with a custom ON clause.
 
SqlUpdateQueryBuilderLeftOuterJoin (std::string_view joinTable, std::string_view joinColumnName, SqlQualifiedTableColumnName onOtherColumn)
 Constructs an LEFT OUTER JOIN clause.
 
SqlUpdateQueryBuilderLeftOuterJoin (std::string_view joinTable, std::string_view joinColumnName, std::string_view onMainTableColumn)
 Constructs an LEFT OUTER JOIN clause.
 
SqlUpdateQueryBuilderLeftOuterJoin (std::string_view joinTable, OnChainCallable const &onClauseBuilder)
 Constructs an LEFT OUTER JOIN clause with a custom ON clause.
 
SqlUpdateQueryBuilderRightOuterJoin (std::string_view joinTable, std::string_view joinColumnName, SqlQualifiedTableColumnName onOtherColumn)
 Constructs an RIGHT OUTER JOIN clause.
 
SqlUpdateQueryBuilderRightOuterJoin (std::string_view joinTable, std::string_view joinColumnName, std::string_view onMainTableColumn)
 Constructs an RIGHT OUTER JOIN clause.
 
SqlUpdateQueryBuilderRightOuterJoin (std::string_view joinTable, OnChainCallable const &onClauseBuilder)
 Constructs an RIGHT OUTER JOIN clause with a custom ON clause.
 
SqlUpdateQueryBuilderFullOuterJoin (std::string_view joinTable, std::string_view joinColumnName, SqlQualifiedTableColumnName onOtherColumn)
 Constructs an FULL OUTER JOIN clause.
 
SqlUpdateQueryBuilderFullOuterJoin (std::string_view joinTable, std::string_view joinColumnName, std::string_view onMainTableColumn)
 Constructs an FULL OUTER JOIN clause.
 
SqlUpdateQueryBuilderFullOuterJoin (std::string_view joinTable, OnChainCallable const &onClauseBuilder)
 Constructs an FULL OUTER JOIN clause with a custom ON clause.
 
LIGHTWEIGHT_FORCE_INLINE void AppendColumnName (ColumnName const &columnName)
 
LIGHTWEIGHT_FORCE_INLINE void AppendLiteralValue (LiteralType const &value)
 
LIGHTWEIGHT_FORCE_INLINE SqlUpdateQueryBuilderJoin (JoinType joinType, std::string_view joinTable, Callable const &onClauseBuilder)
 

Detailed Description

Query builder for building UPDATE ... queries.

Definition at line 14 of file Update.hpp.

Constructor & Destructor Documentation

◆ SqlUpdateQueryBuilder()

SqlUpdateQueryBuilder::SqlUpdateQueryBuilder ( SqlQueryFormatter const &  formatter,
std::string  table,
std::string  tableAlias,
std::vector< SqlVariant > *  inputBindings 
)
inlinenoexcept

Constructs a new SqlUpdateQueryBuilder object.

Parameters
formatterThe SQL query formatter to use. One of SqlServerQueryFormatter, OracleSqlQueryFormatter, PostgreSqlFormatter
tableThe name of the table to update.
tableAliasThe alias of the table to update.
inputBindingsThe input bindings to use for the query.

Definition at line 24 of file Update.hpp.

Member Function Documentation

◆ SearchCondition()

SqlSearchCondition & SqlUpdateQueryBuilder::SearchCondition ( )
inlinenoexcept

Definition at line 36 of file Update.hpp.

◆ Formatter()

SqlQueryFormatter const & SqlUpdateQueryBuilder::Formatter ( ) const
inlinenoexcept

Returns the SQL query formatter.

Definition at line 42 of file Update.hpp.

◆ Set()

template<typename ColumnValue >
SqlUpdateQueryBuilder & SqlUpdateQueryBuilder::Set ( std::string_view  columnName,
ColumnValue const &  value 
)

Adds a single column to the SET clause.

Definition at line 68 of file Update.hpp.

References SqlQueryFormatter::StringLiteral().


The documentation for this class was generated from the following file: