ochran
ochran
Let's say we have inserted a column using `NOW()` in MySQL, this will use your local time zone and save `2019-04-07 15:50:21` When reading this from the database using this...
I am using `DATETIME` in MySQL, the PR does fix it as Crystal will now be correctly expecting a +01:00 time object instead of a UTC. In the example I...
This is why it should be an ENV var, so the dev/ops can add it to a .env file, currently I have no way of returning a non-UTC Time object...
> But time zone values will be incorrect again in case `DB_TIME_ZONE` differs from the server time zone. If a server's timezone is already UTC, there is no need to...
@RX14 It isn't a problem in any other lib I've come across, but I think that may be down to the fact that most languages don't have a Time object...
I think having a dao pattern here would be beneficial, knowing how to inherit from a MySQLDAO or FileDAO base class for example. Useful to see the abstraction layer a...