6#include "../SqlColumnTypeDefinitions.hpp"
7#include "../SqlDataBinder.hpp"
10#include <reflection-cpp/reflection.hpp>
25 static_assert(AlwaysFalse<T>,
"Unsupported type for SQL column definition.");
31 static constexpr auto value = SqlColumnTypeDefinitions::Bool {};
37 static constexpr auto value = SqlColumnTypeDefinitions::Char { 1 };
43 static constexpr auto value = SqlColumnTypeDefinitions::Date {};
49 static constexpr auto value = SqlColumnTypeDefinitions::DateTime {};
55 static constexpr auto value = SqlColumnTypeDefinitions::Time {};
58template <
size_t Precision,
size_t Scale>
61 static constexpr auto value = SqlColumnTypeDefinitions::Decimal { .precision = Precision, .scale = Scale };
67 static constexpr auto value = SqlColumnTypeDefinitions::Guid {};
71 requires(detail::OneOf<T, int16_t, uint16_t>)
72struct SqlColumnTypeDefinitionOf<T>
74 static constexpr auto value = SqlColumnTypeDefinitions::Smallint {};
78 requires(detail::OneOf<T, int32_t, uint32_t>)
79struct SqlColumnTypeDefinitionOf<T>
81 static constexpr auto value = SqlColumnTypeDefinitions::Integer {};
85 requires(detail::OneOf<T, int64_t, uint64_t>)
86struct SqlColumnTypeDefinitionOf<T>
88 static constexpr auto value = SqlColumnTypeDefinitions::Bigint {};
92 requires(detail::OneOf<T, float, double>)
93struct SqlColumnTypeDefinitionOf<T>
95 static constexpr auto value = SqlColumnTypeDefinitions::Real {};
98template <
size_t N,
typename CharT>
99 requires(detail::OneOf<CharT, char>)
102 static constexpr auto value = SqlColumnTypeDefinitions::Varchar { N };
105template <
size_t N,
typename CharT>
106 requires(detail::OneOf<CharT, char16_t, char32_t, wchar_t>)
109 static constexpr auto value = SqlColumnTypeDefinitions::NVarchar { N };
112template <
size_t N,
typename CharT>
113 requires(detail::OneOf<CharT, char>)
116 static constexpr auto value = SqlColumnTypeDefinitions::Char { N };
119template <
size_t N,
typename CharT>
120 requires(detail::OneOf<CharT, char16_t, char32_t, wchar_t>)
123 static constexpr auto value = SqlColumnTypeDefinitions::NChar { N };
126template <
size_t N,
typename CharT>
129 static constexpr auto value = SqlColumnTypeDefinitions::Char { N };
132template <
size_t N,
typename CharT>
133 requires(detail::OneOf<CharT, char16_t, char32_t, wchar_t>)
136 static constexpr auto value = SqlColumnTypeDefinitions::NChar { N };
139template <
size_t N,
typename CharT>
140 requires(detail::OneOf<CharT, char>)
143 static constexpr auto value = SqlColumnTypeDefinitions::Varchar { N };
146template <
size_t N,
typename CharT>
147 requires(detail::OneOf<CharT, char8_t, char16_t, char32_t, wchar_t>)
150 static constexpr auto value = SqlColumnTypeDefinitions::NVarchar { N };
156 static constexpr auto value = SqlColumnTypeDefinitionOf<T>::value;
207 std::optional<SqlForeignKeyReferenceDefinition>
foreignKey {};
219struct SqlCreateTablePlan
221 std::string_view tableName;
222 std::vector<SqlColumnDeclaration> columns;
225enum class SqlNullable : uint8_t
231namespace SqlAlterTableCommands
236 std::string_view newTableName;
241 std::string columnName;
242 SqlColumnTypeDefinition columnType;
243 SqlNullable nullable = SqlNullable::Null;
248 std::string columnName;
249 SqlColumnTypeDefinition columnType;
250 SqlNullable nullable = SqlNullable::Null;
255 std::string_view columnName;
261 std::string_view oldColumnName;
262 std::string_view newColumnName;
267 std::string_view columnName;
272 std::string_view columnName;
277 std::string columnName;
283 std::string columnName;
292 SqlAlterTableCommands::AddColumn,
293 SqlAlterTableCommands::AlterColumn,
294 SqlAlterTableCommands::AddIndex,
295 SqlAlterTableCommands::RenameColumn,
296 SqlAlterTableCommands::DropColumn,
297 SqlAlterTableCommands::DropIndex,
298 SqlAlterTableCommands::AddForeignKey,
299 SqlAlterTableCommands::DropForeignKey>;
356 std::vector<SqlMigrationPlanElement> steps {};
358 [[nodiscard]] LIGHTWEIGHT_API std::vector<std::string>
ToSql()
const;
std::variant< SqlCreateTablePlan, SqlAlterTablePlan, SqlDropTablePlan > SqlMigrationPlanElement
Represents a single SQL migration plan element.
constexpr auto SqlColumnTypeDefinitionOf
Represents a SQL column type definition of T.
LIGHTWEIGHT_API std::vector< std::string > ToSql(SqlQueryFormatter const &formatter, SqlMigrationPlanElement const &element)
SqlPrimaryKeyType
Represents a primary key type.
std::variant< SqlAlterTableCommands::RenameTable, SqlAlterTableCommands::AddColumn, SqlAlterTableCommands::AlterColumn, SqlAlterTableCommands::AddIndex, SqlAlterTableCommands::RenameColumn, SqlAlterTableCommands::DropColumn, SqlAlterTableCommands::DropIndex, SqlAlterTableCommands::AddForeignKey, SqlAlterTableCommands::DropForeignKey > SqlAlterTableCommand
Represents a single SQL ALTER TABLE command.
Represents a SQL ALTER TABLE plan on a given table.
std::string_view tableName
The name of the table to alter.
std::vector< SqlAlterTableCommand > commands
The list of commands to execute on the table.
Represents a SQL column declaration.
bool index
Indicates if the column is indexed.
SqlColumnTypeDefinition type
The type of the column.
bool required
Indicates if the column is required (non-nullable).
std::optional< SqlForeignKeyReferenceDefinition > foreignKey
The foreign key reference definition of the column.
SqlPrimaryKeyType primaryKey
The primary key type of the column.
bool unique
Indicates if the column is unique.
std::string name
The name of the column.
Represents a SQL DROP TABLE plan.
std::string_view tableName
The name of the table to drop.
Represents a foreign key reference definition.
std::string columnName
The column name that the foreign key references.
std::string tableName
The table name that the foreign key references.
Represents a SQL migration plan.