PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

postgresql-Zeitstempel zum std::chrono-Wert

Die C++20-Spezifikation führt eine Familie von chrono::time_point ein s namens local_time :

// [time.clock.local], local time
struct local_t {};
template<class Duration>
  using local_time  = time_point<local_t, Duration>;
using local_seconds = local_time<seconds>;
using local_days    = local_time<days>;

Diese time_point s stellen einen "Zeitstempel ohne Zeitzone" dar.

Hier gibt es eine kostenlose Open-Source-Vorschau dieser C++20-Bibliothek:

https://github.com/HowardHinnant/date

die derzeit von anderen Projekten auf der ganzen Welt verwendet wird. Diese Bibliothek hat ein paar kleinere Änderungen gegenüber der C++20-Spezifikation, wie z. B. das Einfügen von allem in namespace date statt namespace std::chrono .

Beispielprogramm, das diese Bibliothek verwendet:

#include "date/date.h"
#include <iostream>

int
main()
{
    using namespace date;
    using namespace std::chrono;
    int y = 2019;
    int m = 8;
    int d = 28;
    int H = 14;
    int M = 42;
    int S = 16;
    int US = 500'000;
    local_time<microseconds> lt = local_days{year{y}/m/d} + hours{H} +
                                  minutes{M} + seconds{S} + microseconds{US};
    std::cout << lt << '\n';
}

Ausgabe:

2019-08-28 14:42:16.500000