GithubHelp home page GithubHelp logo

Comments (9)

valsydalv avatar valsydalv commented on August 11, 2024

Also, could you please help me with the code?
Why it was commented?

from sqlpp11-connector-postgresql.

matthijs avatar matthijs commented on August 11, 2024

I've looked into this, but I didn't write that part of the library. As far as I can see this can use some refactoring using the date library. Parsing is added a while ago and is done in the following way:

std::istringstream in {datetime_iso_string};
date::micro_seconds tp;
is >> date::parse("%FT%T%z", tp);

See here for the formatting options.

from sqlpp11-connector-postgresql.

valsydalv avatar valsydalv commented on August 11, 2024

I think it can't be parsed with date::parse because I had a situation when the PostgreSQL returned an arbitrary number of digits in the fractional part.

I'll try to uncomment the lines to see if it help.

from sqlpp11-connector-postgresql.

matthijs avatar matthijs commented on August 11, 2024

According to this documentation, the resolution of datetime is 1 microsecond. Which datatype did you have that returned an arbitrary number of digits?

from sqlpp11-connector-postgresql.

valsydalv avatar valsydalv commented on August 11, 2024

Timestamp.
e.g. instead this date 2018-03-27 06:46:03.40000 it returned this: 2018-03-27 06:46:03.4

from sqlpp11-connector-postgresql.

valsydalv avatar valsydalv commented on August 11, 2024

Here is old CI status I've found: https://travis-ci.org/matthijs/sqlpp11-connector-postgresql/jobs/346028969

with the line
PostgreSQL debug: got date_time string: 2018-02-25 20:30:10.57572
and then
TIMESTAMP '2018-02-25 20:30:10.000000' != TIMESTAMP '2018-02-25 20:30:10.575720'

That's the reason why I've changed the ms parsing behavior in the last PR.

from sqlpp11-connector-postgresql.

valsydalv avatar valsydalv commented on August 11, 2024

Also, am I correct that the library stores time in the UTC?

from sqlpp11-connector-postgresql.

matthijs avatar matthijs commented on August 11, 2024

The sqlpp library uses sqlpp::chrono::microsecond_point as time_point. And the microsecond_point is defined as follows:

using microsecond_point = std::chrono::time_point<std::chrono::system_clock, std::chrono::microseconds>;

According to the system_clock documentation it is stored as UTC. So yes, you are correct about storing the time in UTC.

from sqlpp11-connector-postgresql.

gagbo avatar gagbo commented on August 11, 2024

Probably fixed by #69 since this PR tries to stop ignoring timezones

from sqlpp11-connector-postgresql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.