4#include "../SqlQueryFormatter.hpp"
5#include "SQLiteFormatter.hpp"
7#include <reflection-cpp/reflection.hpp>
12class OracleSqlQueryFormatter final:
public SQLiteQueryFormatter
15 [[nodiscard]] std::string QueryLastInsertId(std::string_view tableName)
const override
17 return std::format(
"SELECT \"{}_SEQ\".CURRVAL FROM DUAL;", tableName);
20 [[nodiscard]] std::string_view BooleanLiteral(
bool literalValue)
const noexcept override
22 return literalValue ?
"1" :
"0";
25 [[nodiscard]] std::string SelectFirst(
bool distinct,
26 std::string_view fields,
27 std::string_view fromTable,
28 std::string_view fromTableAlias,
29 std::string_view tableJoins,
30 std::string_view whereCondition,
31 std::string_view orderBy,
32 size_t count)
const override
34 std::stringstream sqlQueryString;
35 sqlQueryString <<
"SELECT";
37 sqlQueryString <<
" DISTINCT";
38 sqlQueryString <<
" TOP " << count;
39 sqlQueryString <<
' ' << fields;
40 sqlQueryString <<
" FROM \"" << fromTable <<
'"';
41 if (!fromTableAlias.empty())
42 sqlQueryString <<
" AS \"" << fromTableAlias <<
'"';
43 sqlQueryString << tableJoins;
44 sqlQueryString << whereCondition;
45 sqlQueryString << orderBy;
47 return sqlQueryString.str();
50 [[nodiscard]] std::string SelectRange(
bool distinct,
51 std::string_view fields,
52 std::string_view fromTable,
53 std::string_view fromTableAlias,
54 std::string_view tableJoins,
55 std::string_view whereCondition,
56 std::string_view orderBy,
57 std::string_view groupBy,
59 std::size_t limit)
const override
61 assert(!orderBy.empty());
62 std::stringstream sqlQueryString;
63 sqlQueryString <<
"SELECT " << fields;
65 sqlQueryString <<
" DISTINCT";
66 sqlQueryString <<
" FROM \"" << fromTable <<
"\"";
67 if (!fromTableAlias.empty())
68 sqlQueryString <<
" AS \"" << fromTableAlias <<
"\"";
69 sqlQueryString << tableJoins;
70 sqlQueryString << whereCondition;
71 sqlQueryString << groupBy;
72 sqlQueryString << orderBy;
73 sqlQueryString <<
" OFFSET " << offset <<
" ROWS FETCH NEXT " << limit <<
" ROWS ONLY";
74 return sqlQueryString.str();
77 [[nodiscard]] std::string ColumnType(SqlColumnTypeDefinition
const& type)
const override
79 using namespace SqlColumnTypeDefinitions;
82 [](Bigint
const&) -> std::string {
return "NUMBER(21, 0)"; },
83 [](Binary
const&) -> std::string {
return "BLOB"; },
84 [](Bool
const&) -> std::string {
return "BIT"; },
85 [](Char
const& type) -> std::string {
return std::format(
"CHAR({})", type.size); },
86 [](Date
const&) -> std::string {
return "DATE"; },
87 [](DateTime
const&) -> std::string {
return "TIMESTAMP"; },
88 [](Decimal
const& type) -> std::string {
89 return std::format(
"DECIMAL({}, {})", type.precision, type.scale);
91 [](Guid
const&) -> std::string {
return "RAW(16)"; },
92 [](Integer
const&) -> std::string {
return "INTEGER"; },
93 [](NChar
const& type) -> std::string {
return std::format(
"NCHAR({})", type.size); },
94 [](NVarchar
const& type) -> std::string {
return std::format(
"NVARCHAR2({})", type.size); },
95 [](Real
const&) -> std::string {
return "REAL"; },
96 [](Smallint
const&) -> std::string {
return "SMALLINT"; },
97 [](Text
const& type) -> std::string {
98 if (type.size <= SqlOptimalMaxColumnSize)
99 return std::format(
"VARCHAR2({})", type.size);
103 [](Time
const&) -> std::string {
return "TIMESTAMP"; },
104 [](Timestamp
const&) -> std::string {
return "TIMESTAMP"; },
105 [](Tinyint
const&) -> std::string {
return "TINYINT"; },
106 [](VarBinary
const& type) -> std::string {
return std::format(
"VARBINARY({})", type.size); },
107 [](Varchar
const& type) -> std::string {
return std::format(
"VARCHAR({})", type.size); },
112 [[nodiscard]] std::string BuildColumnDefinition(
SqlColumnDeclaration const& column)
const override
114 std::stringstream sqlQueryString;
115 sqlQueryString <<
'"' << column.
name <<
"\" " << ColumnType(column.
type);
118 sqlQueryString <<
" NOT NULL";
120 if (column.
primaryKey == SqlPrimaryKeyType::AUTO_INCREMENT)
121 sqlQueryString <<
" GENERATED ALWAYS AS IDENTITY";
123 sqlQueryString <<
" UNIQUE";
125 if (column.
primaryKey != SqlPrimaryKeyType::NONE)
126 sqlQueryString <<
",\n PRIMARY KEY (\"" << column.
name <<
"\")";
128 return sqlQueryString.str();
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).
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.