10concept MFCStringLike =
requires(T
const& t) {
11 { t.GetLength() } -> std::same_as<int>;
12 { t.GetString() } -> std::same_as<char const*>;
16 requires(MFCStringLike<T>)
17struct SqlDataBinder<T>
19 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt,
24 return SQLBindParameter(stmt,
31 (SQLPOINTER) value.GetString(),
36 static LIGHTWEIGHT_FORCE_INLINE std::string_view Inspect(T
const& value)
noexcept
38 return { value.GetString(),
static_cast<size_t>(value.GetLength()) };