Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlNullValue.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Core.hpp"
6
7/// Helper binder type to indicate NULL values in SQL queries.
8///
9/// @ingroup DataTypes
11{
12 SQLLEN sqlValue = SQL_NULL_DATA;
13};
14
15/// Used to indicate a NULL value in a SQL query.
16///
17/// @ingroup DataTypes
18constexpr auto SqlNullValue = SqlNullType {};
19
20template <>
21struct SqlDataBinder<SqlNullType>
22{
23 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt,
24 SQLUSMALLINT column,
25 SqlNullType const& value,
26 SqlDataBinderCallback& cb) noexcept
27 {
28 // This is generally ignored for NULL values, but MS SQL Server requires a non-zero value
29 // when the underlying type is e.g. an INT.
30
31 // For MS SQL Server, we need to determine the actual SQL type of the column to bind the parameter correctly,
32 // because requires a correctly convertible SQL type for NULL values.
33 // e.g. MS SQL Server cannot convert a VARCHAR NULL to a binary column type (e.g. BLOB).
34 SQLSMALLINT const sqlType = [stmt, column, serverType = cb.ServerType()]() -> SQLSMALLINT {
35 if (serverType == SqlServerType::MICROSOFT_SQL)
36 {
37 SQLSMALLINT columnType {};
38 auto const sqlReturn = SQLDescribeParam(stmt, column, &columnType, nullptr, nullptr, nullptr);
39 if (SQL_SUCCEEDED(sqlReturn))
40 return columnType;
41 }
42 return SQL_C_CHAR;
43 }();
44
45 return SQLBindParameter(stmt,
46 column,
47 SQL_PARAM_INPUT,
48 SQL_C_CHAR,
49 sqlType,
50 10,
51 0,
52 nullptr,
53 0,
54 &const_cast<SqlNullType&>(value).sqlValue);
55 }
56
57 static LIGHTWEIGHT_FORCE_INLINE std::string_view Inspect(SqlNullType const& /*value*/) noexcept
58 {
59 return "NULL";
60 }
61};
constexpr auto SqlNullValue