#include <SqlDateTime.hpp>
|
constexpr | SqlDateTime (SqlDateTime &&) noexcept=default |
|
constexpr SqlDateTime & | operator= (SqlDateTime &&) noexcept=default |
|
constexpr | SqlDateTime (SqlDateTime const &) noexcept=default |
|
constexpr SqlDateTime & | operator= (SqlDateTime const &other) noexcept=default |
|
constexpr bool | operator== (SqlDateTime const &other) const noexcept |
|
constexpr bool | operator!= (SqlDateTime const &other) const noexcept |
|
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlDateTime (std::chrono::year_month_day ymd, std::chrono::hh_mm_ss< duration_type > time) noexcept |
| Constructs a date and time from individual components.
|
|
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlDateTime (std::chrono::year year, std::chrono::month month, std::chrono::day day, std::chrono::hours hour, std::chrono::minutes minute, std::chrono::seconds second, std::chrono::nanoseconds nanosecond=std::chrono::nanoseconds(0)) noexcept |
| Constructs a date and time from individual components.
|
|
LIGHTWEIGHT_FORCE_INLINE constexpr | SqlDateTime (std::chrono::system_clock::time_point value) noexcept |
| Constructs a date and time from a time point.
|
|
LIGHTWEIGHT_FORCE_INLINE constexpr | operator native_type () const noexcept |
|
constexpr LIGHTWEIGHT_FORCE_INLINE native_type | value () const noexcept |
| Returns the current date and time.
|
|
LIGHTWEIGHT_FORCE_INLINE SqlDateTime & | operator+= (duration_type duration) noexcept |
|
LIGHTWEIGHT_FORCE_INLINE SqlDateTime & | operator-= (duration_type duration) noexcept |
|
|
static LIGHTWEIGHT_FORCE_INLINE SqlDateTime | Now () noexcept |
| Returns the current date and time.
|
|
static LIGHTWEIGHT_FORCE_INLINE SQL_TIMESTAMP_STRUCT constexpr | ConvertToSqlValue (native_type value) noexcept |
|
static LIGHTWEIGHT_FORCE_INLINE SQL_TIMESTAMP_STRUCT constexpr | ConvertToSqlValue (std::chrono::year_month_day ymd, std::chrono::hh_mm_ss< duration_type > hms) noexcept |
|
static LIGHTWEIGHT_FORCE_INLINE native_type constexpr | ConvertToNative (SQL_TIMESTAMP_STRUCT const &time) noexcept |
|
Represents a date and time to efficiently write to or read from a database.
- See also
- SqlDate, SqlTime
Definition at line 15 of file SqlDateTime.hpp.
◆ native_type
using SqlDateTime::native_type = std::chrono::system_clock::time_point |
◆ duration_type
using SqlDateTime::duration_type = std::chrono::system_clock::duration |
◆ SqlDateTime() [1/3]
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDateTime::SqlDateTime |
( |
std::chrono::year_month_day |
ymd, |
|
|
std::chrono::hh_mm_ss< duration_type > |
time |
|
) |
| |
|
inlineconstexprnoexcept |
Constructs a date and time from individual components.
Definition at line 44 of file SqlDateTime.hpp.
◆ SqlDateTime() [2/3]
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDateTime::SqlDateTime |
( |
std::chrono::year |
year, |
|
|
std::chrono::month |
month, |
|
|
std::chrono::day |
day, |
|
|
std::chrono::hours |
hour, |
|
|
std::chrono::minutes |
minute, |
|
|
std::chrono::seconds |
second, |
|
|
std::chrono::nanoseconds |
nanosecond = std::chrono::nanoseconds(0) |
|
) |
| |
|
inlineconstexprnoexcept |
Constructs a date and time from individual components.
Definition at line 61 of file SqlDateTime.hpp.
◆ SqlDateTime() [3/3]
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDateTime::SqlDateTime |
( |
std::chrono::system_clock::time_point |
value | ) |
|
|
inlineconstexprnoexcept |
◆ Now()
static LIGHTWEIGHT_FORCE_INLINE SqlDateTime SqlDateTime::Now |
( |
| ) |
|
|
inlinestaticnoexcept |
◆ operator==()
constexpr bool SqlDateTime::operator== |
( |
SqlDateTime const & |
other | ) |
const |
|
inlineconstexprnoexcept |
◆ operator!=()
constexpr bool SqlDateTime::operator!= |
( |
SqlDateTime const & |
other | ) |
const |
|
inlineconstexprnoexcept |
◆ operator native_type()
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDateTime::operator native_type |
( |
| ) |
const |
|
inlineconstexprnoexcept |
◆ ConvertToSqlValue() [1/2]
static LIGHTWEIGHT_FORCE_INLINE SQL_TIMESTAMP_STRUCT constexpr SqlDateTime::ConvertToSqlValue |
( |
native_type |
value | ) |
|
|
inlinestaticconstexprnoexcept |
◆ ConvertToSqlValue() [2/2]
static LIGHTWEIGHT_FORCE_INLINE SQL_TIMESTAMP_STRUCT constexpr SqlDateTime::ConvertToSqlValue |
( |
std::chrono::year_month_day |
ymd, |
|
|
std::chrono::hh_mm_ss< duration_type > |
hms |
|
) |
| |
|
inlinestaticconstexprnoexcept |
◆ ConvertToNative()
static LIGHTWEIGHT_FORCE_INLINE native_type constexpr SqlDateTime::ConvertToNative |
( |
SQL_TIMESTAMP_STRUCT const & |
time | ) |
|
|
inlinestaticconstexprnoexcept |
◆ value()
constexpr LIGHTWEIGHT_FORCE_INLINE native_type SqlDateTime::value |
( |
| ) |
const |
|
inlineconstexprnoexcept |
◆ operator+=()
LIGHTWEIGHT_FORCE_INLINE SqlDateTime & SqlDateTime::operator+= |
( |
duration_type |
duration | ) |
|
|
inlinenoexcept |
◆ operator-=()
LIGHTWEIGHT_FORCE_INLINE SqlDateTime & SqlDateTime::operator-= |
( |
duration_type |
duration | ) |
|
|
inlinenoexcept |
◆ sqlValue
SQL_TIMESTAMP_STRUCT SqlDateTime::sqlValue {} |
The documentation for this struct was generated from the following file: