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"
11struct [[nodiscard]] SqlLastInsertIdQuery
13 std::string tableName;
16 [[nodiscard]] std::string
ToSql()
const
30 std::string&& table = {},
31 std::string&& alias = {})
noexcept;
43 return FromTable(std::string_view { table, N - 1 });
57 LIGHTWEIGHT_API SqlLastInsertIdQuery LastInsertId();
78 std::
string m_tableAlias;
83 std::
string&& alias) noexcept:
84 m_formatter { formatter },
85 m_table { std::move(table) },
86 m_tableAlias { std::move(alias) }
Query builder for building DELETE FROM ... queries.
Query builder for building INSERT INTO ... queries.
Query builder for building SQL migration queries.
API Entry point for building SQL queries.
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.
Query builder for building SELECT ... queries.
Query builder for building UPDATE ... queries.
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.