5#include "../SqlColumnTypeDefinitions.hpp"
7#include "UnicodeConverter.hpp"
15template <
typename CharT>
16struct SqlBasicStringOperations<std::basic_string<CharT>>
18 using CharType = CharT;
19 using StringType = std::basic_string<CharT>;
21 static constexpr auto ColumnType = SqlColumnTypeDefinitions::Varchar { 255 };
23 static LIGHTWEIGHT_FORCE_INLINE CharType
const* Data(StringType
const* str)
noexcept
28 static LIGHTWEIGHT_FORCE_INLINE CharType* Data(StringType* str)
noexcept
33 static LIGHTWEIGHT_FORCE_INLINE SQLULEN Size(StringType
const* str)
noexcept
38 static LIGHTWEIGHT_FORCE_INLINE
void Clear(StringType* str)
noexcept
43 static LIGHTWEIGHT_FORCE_INLINE
void Reserve(StringType* str,
size_t capacity)
noexcept
48 str->reserve(capacity);
49 str->resize(str->capacity());
52 static LIGHTWEIGHT_FORCE_INLINE
void Resize(StringType* str, SQLLEN indicator)
noexcept
55 str->resize(indicator);