6#include "SqlNullValue.hpp"
12struct SqlDataBinder<std::optional<T>>
14 using OptionalValue = std::optional<T>;
16 static constexpr auto ColumnType = SqlDataBinder<T>::ColumnType;
18 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt,
20 OptionalValue
const& value,
23 if (value.has_value())
24 return SqlDataBinder<T>::InputParameter(stmt, column, *value, cb);
26 return SqlDataBinder<SqlNullType>::InputParameter(stmt, column,
SqlNullValue, cb);
29 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN OutputColumn(SQLHSTMT stmt,
31 OptionalValue* result,
38 auto const sqlReturn = SqlDataBinder<T>::OutputColumn(stmt, column, &result->emplace(), indicator, cb);
39 cb.PlanPostProcessOutputColumn([result, indicator]() {
40 if (indicator && *indicator == SQL_NULL_DATA)
41 *result = std::nullopt;
46 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN GetColumn(SQLHSTMT stmt,
48 OptionalValue* result,
52 auto const sqlReturn = SqlDataBinder<T>::GetColumn(stmt, column, &result->emplace(), indicator, cb);
53 if (indicator && *indicator == SQL_NULL_DATA)
54 *result = std::nullopt;
58 static LIGHTWEIGHT_FORCE_INLINE std::string Inspect(OptionalValue
const& value)
noexcept
63 return std::string(SqlDataBinder<T>::Inspect(*value));
constexpr auto SqlNullValue