Lightweight 0.1.0
Loading...
Searching...
No Matches
Primitives.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "../SqlColumnTypeDefinitions.hpp"
6#include "Core.hpp"
7
8template <typename T, SQLSMALLINT TheCType, SQLINTEGER TheSqlType, auto TheColumnType>
9struct SqlSimpleDataBinder
10{
11 static constexpr SqlColumnTypeDefinition ColumnType = TheColumnType;
12
13 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt,
14 SQLUSMALLINT column,
15 T const& value,
16 SqlDataBinderCallback& /*cb*/) noexcept
17 {
18 return SQLBindParameter(
19 stmt, column, SQL_PARAM_INPUT, TheCType, TheSqlType, 0, 0, (SQLPOINTER) &value, 0, nullptr);
20 }
21
22 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN OutputColumn(
23 SQLHSTMT stmt, SQLUSMALLINT column, T* result, SQLLEN* indicator, SqlDataBinderCallback& /*unused*/) noexcept
24 {
25 return SQLBindCol(stmt, column, TheCType, result, 0, indicator);
26 }
27
28 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN GetColumn(
29 SQLHSTMT stmt, SQLUSMALLINT column, T* result, SQLLEN* indicator, SqlDataBinderCallback const& /*cb*/) noexcept
30 {
31 return SQLGetData(stmt, column, TheCType, result, 0, indicator);
32 }
33
34 static LIGHTWEIGHT_FORCE_INLINE std::string Inspect(T value)
35 {
36 return std::to_string(value);
37 }
38};
39
40template <typename Int64Type, SQLSMALLINT TheCType>
41struct Int64DataBinderHelper
42{
43 static constexpr SqlColumnTypeDefinition ColumnType = SqlColumnTypeDefinitions::Bigint {};
44
45 static LIGHTWEIGHT_API SQLRETURN InputParameter(SQLHSTMT stmt,
46 SQLUSMALLINT column,
47 Int64Type const& value,
48 SqlDataBinderCallback& cb) noexcept;
49
50 static LIGHTWEIGHT_API SQLRETURN OutputColumn(
51 SQLHSTMT stmt, SQLUSMALLINT column, Int64Type* result, SQLLEN* indicator, SqlDataBinderCallback& cb) noexcept;
52
53 static LIGHTWEIGHT_API SQLRETURN GetColumn(SQLHSTMT stmt,
54 SQLUSMALLINT column,
55 Int64Type* result,
56 SQLLEN* indicator,
57 SqlDataBinderCallback const& cb) noexcept;
58
59 static LIGHTWEIGHT_FORCE_INLINE std::string Inspect(Int64Type value)
60 {
61 return std::to_string(value);
62 }
63};
64
65// clang-format off
66template <> struct SqlDataBinder<bool>: SqlSimpleDataBinder<bool, SQL_BIT, SQL_BIT, SqlColumnTypeDefinitions::Bool {}> {};
67template <> struct SqlDataBinder<char>: SqlSimpleDataBinder<char, SQL_C_CHAR, SQL_CHAR, SqlColumnTypeDefinitions::Char {}> {};
68template <> struct SqlDataBinder<int8_t>: SqlSimpleDataBinder<int8_t, SQL_C_STINYINT, SQL_TINYINT, SqlColumnTypeDefinitions::Tinyint {}> {};
69template <> struct SqlDataBinder<uint8_t>: SqlSimpleDataBinder<uint8_t, SQL_C_UTINYINT, SQL_TINYINT, SqlColumnTypeDefinitions::Tinyint {}> {};
70template <> struct SqlDataBinder<int16_t>: SqlSimpleDataBinder<int16_t, SQL_C_SSHORT, SQL_SMALLINT, SqlColumnTypeDefinitions::Smallint {}> {};
71template <> struct SqlDataBinder<uint16_t>: SqlSimpleDataBinder<uint16_t, SQL_C_USHORT, SQL_SMALLINT, SqlColumnTypeDefinitions::Smallint {}> {};
72template <> struct SqlDataBinder<int32_t>: SqlSimpleDataBinder<int32_t, SQL_C_SLONG, SQL_INTEGER, SqlColumnTypeDefinitions::Integer {}> {};
73template <> struct SqlDataBinder<uint32_t>: SqlSimpleDataBinder<uint32_t, SQL_C_ULONG, SQL_INTEGER, SqlColumnTypeDefinitions::Integer {}> {};
74template <> struct SqlDataBinder<int64_t>: Int64DataBinderHelper<int64_t, SQL_C_SBIGINT> {};
75template <> struct SqlDataBinder<uint64_t>: Int64DataBinderHelper<uint64_t, SQL_C_UBIGINT> {};
76//template <> struct SqlDataBinder<uint64_t>: Int64DataBinderHelper<uint64_t, SQL_C_UBIGINT> {};
77template <> struct SqlDataBinder<float>: SqlSimpleDataBinder<float, SQL_C_FLOAT, SQL_REAL, SqlColumnTypeDefinitions::Real {}> {};
78template <> struct SqlDataBinder<double>: SqlSimpleDataBinder<double, SQL_C_DOUBLE, SQL_DOUBLE, SqlColumnTypeDefinitions::Real {}> {};
79#if !defined(_WIN32) && !defined(__APPLE__)
80template <> struct SqlDataBinder<long long>: Int64DataBinderHelper<long long, SQL_C_SBIGINT> {};
81template <> struct SqlDataBinder<unsigned long long>: Int64DataBinderHelper<unsigned long long, SQL_C_UBIGINT> {};
82#endif
83#if defined(__APPLE__) // size_t is a different type on macOS
84template <> struct SqlDataBinder<std::size_t>: SqlSimpleDataBinder<std::size_t, SQL_C_SBIGINT, SqlColumnTypeDefinitions::Bigint {}> {};
85#endif
86// clang-format on