Lightweight 0.1.0
Loading...
Searching...
No Matches
Update.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Core.hpp"
6
7#include <string>
8#include <string_view>
9#include <vector>
10
11/// @brief Query builder for building UPDATE ... queries.
12///
13/// @ingroup QueryBuilder
14class [[nodiscard]] SqlUpdateQueryBuilder final: public SqlWhereClauseBuilder<SqlUpdateQueryBuilder>
15{
16 public:
17 /// Constructs a new SqlUpdateQueryBuilder object.
18 ///
19 /// @param formatter The SQL query formatter to use. One of SqlServerQueryFormatter, OracleSqlQueryFormatter,
20 /// PostgreSqlFormatter
21 /// @param table The name of the table to update.
22 /// @param tableAlias The alias of the table to update.
23 /// @param inputBindings The input bindings to use for the query.
25 std::string table,
26 std::string tableAlias,
27 std::vector<SqlVariant>* inputBindings) noexcept:
29 m_formatter { formatter }
30 {
31 m_searchCondition.tableName = std::move(table);
32 m_searchCondition.tableAlias = std::move(tableAlias);
33 m_searchCondition.inputBindings = inputBindings;
34 }
35
36 SqlSearchCondition& SearchCondition() noexcept
37 {
38 return m_searchCondition;
39 }
40
41 /// @brief Returns the SQL query formatter.
42 [[nodiscard]] SqlQueryFormatter const& Formatter() const noexcept
43 {
44 return m_formatter;
45 }
46
47 /// Adds a single column to the SET clause.
48 template <typename ColumnValue>
49 SqlUpdateQueryBuilder& Set(std::string_view columnName, ColumnValue const& value);
50
51 /// Adds a single column to the SET clause with the value being a string literal.
52 template <std::size_t N>
53 SqlUpdateQueryBuilder& Set(std::string_view columnName, char const (&value)[N]);
54
55 /// Adds a single column to the SET clause with the value being a MFC like CString.
56 SqlUpdateQueryBuilder& Set(std::string_view columnName, MFCStringLike auto const* value);
57
58 /// Finalizes building the query as UPDATE ... query.
59 [[nodiscard]] std::string ToSql() const;
60
61 private:
62 SqlQueryFormatter const& m_formatter;
63 std::string m_values;
64 SqlSearchCondition m_searchCondition;
65};
66
67template <typename ColumnValue>
68SqlUpdateQueryBuilder& SqlUpdateQueryBuilder::Set(std::string_view columnName, ColumnValue const& value)
69{
70 using namespace std::string_view_literals;
71
72 if (!m_values.empty())
73 m_values += ", "sv;
74
75 m_values += '"';
76 m_values += columnName;
77 m_values += R"(" = )"sv;
78
79 if constexpr (std::is_same_v<ColumnValue, SqlNullType>)
80 m_values += "NULL"sv;
81 else if constexpr (std::is_same_v<ColumnValue, SqlWildcardType>)
82 m_values += '?';
83 else if (m_searchCondition.inputBindings)
84 {
85 m_values += '?';
86 m_searchCondition.inputBindings->emplace_back(value);
87 }
88 else if constexpr (std::is_same_v<ColumnValue, char>)
89 m_values += m_formatter.StringLiteral(value);
90 else if constexpr (std::is_arithmetic_v<ColumnValue>)
91 m_values += std::format("{}", value);
92 else if constexpr (!WhereConditionLiteralType<ColumnValue>::needsQuotes)
93 m_values += std::format("{}", value);
94 else
95 {
96 m_values += '\'';
97 m_values += std::format("{}", value);
98 m_values += '\'';
99 }
100
101 return *this;
102}
103
104template <std::size_t N>
105SqlUpdateQueryBuilder& SqlUpdateQueryBuilder::Set(std::string_view columnName, char const (&value)[N])
106{
107 return Set(columnName, std::string_view { value, N - 1 });
108}
109
110inline SqlUpdateQueryBuilder& SqlUpdateQueryBuilder::Set(std::string_view columnName, MFCStringLike auto const* value)
111{
112 return Set(columnName, std::string_view { value->GetString(), value->GetLength() });
113}
114
115inline LIGHTWEIGHT_FORCE_INLINE std::string SqlUpdateQueryBuilder::ToSql() const
116{
117 return m_formatter.Update(
118 m_searchCondition.tableName, m_searchCondition.tableAlias, m_values, m_searchCondition.condition);
119}
API to format SQL queries for different SQL dialects.
virtual std::string StringLiteral(std::string_view value) const noexcept=0
Converts a string value to a string literal.
virtual std::string Update(std::string_view table, std::string_view tableAlias, std::string_view setFields, std::string_view whereCondition) const =0
Constructs an SQL UPDATE query.
Query builder for building UPDATE ... queries.
Definition Update.hpp:15
SqlUpdateQueryBuilder & Set(std::string_view columnName, ColumnValue const &value)
Adds a single column to the SET clause.
Definition Update.hpp:68
SqlUpdateQueryBuilder(SqlQueryFormatter const &formatter, std::string table, std::string tableAlias, std::vector< SqlVariant > *inputBindings) noexcept
Definition Update.hpp:24
SqlQueryFormatter const & Formatter() const noexcept
Returns the SQL query formatter.
Definition Update.hpp:42
SqlUpdateQueryBuilder & Set(std::string_view columnName, MFCStringLike auto const *value)
Adds a single column to the SET clause with the value being a MFC like CString.
SqlUpdateQueryBuilder & Set(std::string_view columnName, char const (&value)[N])
Adds a single column to the SET clause with the value being a string literal.
std::string ToSql() const
Finalizes building the query as UPDATE ... query.