Lightweight 0.1.0
Loading...
Searching...
No Matches
MFCStringLike.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Core.hpp"
6
7#include <concepts>
8
9template <typename T>
10concept MFCStringLike = requires(T const& t) {
11 { t.GetLength() } -> std::same_as<int>;
12 { t.GetString() } -> std::same_as<char const*>;
13};
14
15template <typename T>
16 requires(MFCStringLike<T>)
17struct SqlDataBinder<T>
18{
19 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt,
20 SQLUSMALLINT column,
21 T const& value,
22 SqlDataBinderCallback& /*cb*/) noexcept
23 {
24 return SQLBindParameter(stmt,
25 column,
26 SQL_PARAM_INPUT,
27 SQL_C_CHAR,
28 SQL_VARCHAR,
29 value.GetLength(),
30 0,
31 (SQLPOINTER) value.GetString(),
32 0,
33 nullptr);
34 }
35
36 static LIGHTWEIGHT_FORCE_INLINE std::string_view Inspect(T const& value) noexcept
37 {
38 return { value.GetString(), static_cast<size_t>(value.GetLength()) };
39 }
40};
41
42// TODO: Use the below instead in order to get full support for MFC-like strings.
43
44// template <typename T>
45// requires(MFCStringLike<T>)
46// struct SqlBasicStringOperations<T>
47// {
48// static char const* Data(MFCStringLike auto const* str) noexcept
49// {
50// return str->GetString();
51// }
52//
53// static char* Data(MFCStringLike auto* str) noexcept
54// {
55// return str->GetString();
56// }
57//
58// static SQLULEN Size(MFCStringLike auto const* str) noexcept
59// {
60// return static_cast<SQLULEN>(str->GetLength());
61// }
62//
63// static void Clear(MFCStringLike auto* str) noexcept
64// {
65// *str = {};
66// }
67//
68// static void Reserve(MFCStringLike auto* str, size_t capacity) noexcept
69// {
70// // str->reserve(capacity);
71// // str->resize(str->capacity());
72// }
73//
74// static void Resize(MFCStringLike auto* str, SQLLEN indicator) noexcept
75// {
76// // if (indicator > 0)
77// // str->resize(indicator);
78// }
79// };