5#include "../SqlColumnTypeDefinitions.hpp"
12#if !defined(SQL_SS_TIME2)
18#define SQL_SS_TIME2 (-154)
20struct SQL_SS_TIME2_STRUCT
29 sizeof(SQL_SS_TIME2_STRUCT) == 12,
30 "SQL_SS_TIME2_STRUCT size must be padded 12 bytes, as per ODBC extension spec."
41 using native_type = std::chrono::hh_mm_ss<std::chrono::microseconds>;
43#if defined(SQL_SS_TIME2)
44 using sql_type = SQL_SS_TIME2_STRUCT;
46 using sql_type = SQL_TIME_STRUCT;
51 constexpr SqlTime()
noexcept =
default;
56 constexpr ~SqlTime()
noexcept =
default;
58 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE
constexpr native_type value()
const noexcept
60 return ConvertToNative(sqlValue);
63 LIGHTWEIGHT_FORCE_INLINE
constexpr bool operator==(
SqlTime const& other)
const noexcept
65 return value().to_duration().count() == other.value().to_duration().count();
68 LIGHTWEIGHT_FORCE_INLINE
constexpr bool operator!=(
SqlTime const& other)
const noexcept
70 return !(*
this == other);
73 LIGHTWEIGHT_FORCE_INLINE
constexpr SqlTime(native_type value)
noexcept:
74 sqlValue { SqlTime::ConvertToSqlValue(value) }
78 LIGHTWEIGHT_FORCE_INLINE
constexpr SqlTime(std::chrono::hours hour,
79 std::chrono::minutes minute,
80 std::chrono::seconds second,
81 std::chrono::microseconds micros = {})
noexcept:
82 SqlTime(native_type { hour + minute + second + micros })
86 static LIGHTWEIGHT_FORCE_INLINE
constexpr sql_type ConvertToSqlValue(native_type value)
noexcept
89 .hour = (SQLUSMALLINT) value.hours().count(),
90 .minute = (SQLUSMALLINT) value.minutes().count(),
91 .second = (SQLUSMALLINT) value.seconds().count(),
92#if defined(SQL_SS_TIME2)
93 .fraction = (SQLUINTEGER) value.subseconds().count(),
98 static LIGHTWEIGHT_FORCE_INLINE
constexpr native_type ConvertToNative(sql_type
const& value)
noexcept
101 return native_type { std::chrono::hours { (int) value.hour }
102 + std::chrono::minutes { (unsigned) value.minute }
103 + std::chrono::seconds { (unsigned) value.second }
104#if defined(SQL_SS_TIME2)
105 + std::chrono::microseconds { value.fraction }
116 static constexpr auto ColumnType = SqlColumnTypeDefinitions::Time {};
118 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt,
123 return SQLBindParameter(stmt,
130 (SQLPOINTER) &value.sqlValue,
135 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN OutputColumn(
138 return SQLBindCol(stmt, column, SQL_C_TYPE_TIME, &result->sqlValue,
sizeof(result->sqlValue), indicator);
141 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN GetColumn(SQLHSTMT stmt,
147 return SQLGetData(stmt, column, SQL_C_TYPE_TIME, &result->sqlValue,
sizeof(result->sqlValue), indicator);
150 static LIGHTWEIGHT_FORCE_INLINE std::string Inspect(
SqlTime const& value)
noexcept
152 return std::format(
"{:02}:{:02}:{:02}.{:06}",
154 value.sqlValue.minute,
155 value.sqlValue.second,
156 value.sqlValue.fraction);
161struct std::formatter<
SqlTime>: std::formatter<std::string>
163 auto format(
SqlTime const& value, std::format_context& ctx)
const -> std::format_context::iterator
165 return std::formatter<std::string>::format(std::format(
"{:02}:{:02}:{:02}:{:06}",
167 value.sqlValue.minute,
168 value.sqlValue.second,
169 value.sqlValue.fraction),