Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlQuery.hpp
1// SPDX-License-Identifier: Apache-2.0
2#pragma once
3
4#include "Api.hpp"
5#include "SqlQuery/Delete.hpp"
6#include "SqlQuery/Insert.hpp"
7#include "SqlQuery/Migrate.hpp"
8#include "SqlQuery/Select.hpp"
9#include "SqlQuery/Update.hpp"
10
11struct [[nodiscard]] SqlLastInsertIdQuery
12{
13 std::string tableName;
14 SqlQueryFormatter const* formatter;
15
16 [[nodiscard]] std::string ToSql() const
17 {
18 return formatter->QueryLastInsertId(tableName);
19 }
20};
21
22/// @brief API Entry point for building SQL queries.
23///
24/// @ingroup QueryBuilder
25class [[nodiscard]] SqlQueryBuilder final
26{
27 public:
28 /// Constructs a new query builder for the given table.
29 explicit SqlQueryBuilder(SqlQueryFormatter const& formatter,
30 std::string&& table = {},
31 std::string&& alias = {}) noexcept;
32
33 /// Constructs a new query builder for the given table.
34 LIGHTWEIGHT_API SqlQueryBuilder& FromTable(std::string table);
35
36 /// Constructs a new query builder for the given table.
37 LIGHTWEIGHT_API SqlQueryBuilder& FromTable(std::string_view table);
38
39 /// Constructs a new query builder for the given table.
40 template <size_t N>
41 SqlQueryBuilder& FromTable(char const (&table)[N])
42 {
43 return FromTable(std::string_view { table, N - 1 });
44 }
45
46 /// Constructs a new query builder for the given table with an alias.
47 LIGHTWEIGHT_API SqlQueryBuilder& FromTableAs(std::string table, std::string alias);
48
49 /// Initiates INSERT query building
50 ///
51 /// @param boundInputs Optional vector to store bound inputs.
52 /// If provided, the inputs will be appended to this vector and can be used
53 /// to bind the values to the query via SqlStatement::ExecuteWithVariants(...)
54 LIGHTWEIGHT_API SqlInsertQueryBuilder Insert(std::vector<SqlVariant>* boundInputs = nullptr) noexcept;
55
56 /// Constructs a query to retrieve the last insert ID for the given table.
57 LIGHTWEIGHT_API SqlLastInsertIdQuery LastInsertId();
58
59 /// Initiates SELECT query building.
60 LIGHTWEIGHT_API SqlSelectQueryBuilder Select() noexcept;
61
62 /// Initiates UPDATE query building.
63 ///
64 /// @param boundInputs Optional vector to store bound inputs.
65 /// If provided, the inputs will be appended to this vector and can be used
66 /// to bind the values to the query via SqlStatement::ExecuteWithVariants(...)
67 LIGHTWEIGHT_API SqlUpdateQueryBuilder Update(std::vector<SqlVariant>* boundInputs = nullptr) noexcept;
68
69 /// Initiates DELETE query building.
70 LIGHTWEIGHT_API SqlDeleteQueryBuilder Delete() noexcept;
71
72 /// Initiates query for building database migrations.
73 LIGHTWEIGHT_API SqlMigrationQueryBuilder Migration();
74
75 private:
76 SqlQueryFormatter const& m_formatter;
77 std::string m_table;
78 std::string m_tableAlias;
79};
80
81inline LIGHTWEIGHT_FORCE_INLINE SqlQueryBuilder::SqlQueryBuilder(SqlQueryFormatter const& formatter,
82 std::string&& table,
83 std::string&& alias) noexcept:
84 m_formatter { formatter },
85 m_table { std::move(table) },
86 m_tableAlias { std::move(alias) }
87{
88}
Query builder for building DELETE FROM ... queries.
Definition Delete.hpp:13
Query builder for building INSERT INTO ... queries.
Definition Insert.hpp:17
Query builder for building SQL migration queries.
Definition Migrate.hpp:184
API Entry point for building SQL queries.
Definition SqlQuery.hpp:26
LIGHTWEIGHT_API SqlInsertQueryBuilder Insert(std::vector< SqlVariant > *boundInputs=nullptr) noexcept
LIGHTWEIGHT_API SqlQueryBuilder & FromTable(std::string table)
Constructs a new query builder for the given table.
LIGHTWEIGHT_API SqlQueryBuilder & FromTable(std::string_view table)
Constructs a new query builder for the given table.
LIGHTWEIGHT_API SqlQueryBuilder & FromTableAs(std::string table, std::string alias)
Constructs a new query builder for the given table with an alias.
SqlQueryBuilder & FromTable(char const (&table)[N])
Constructs a new query builder for the given table.
Definition SqlQuery.hpp:41
API to format SQL queries for different SQL dialects.
virtual std::string QueryLastInsertId(std::string_view tableName) const =0
Retrieves the last insert ID of the given table.
Query builder for building SELECT ... queries.
Definition Select.hpp:81
Query builder for building UPDATE ... queries.
Definition Update.hpp:15
LIGHTWEIGHT_API std::vector< std::string > ToSql(SqlQueryFormatter const &formatter, SqlMigrationPlanElement const &element)
Represents a value that can be any of the supported SQL data types.