Igor Kromin |   Consultant. Coder. Blogger. Tinkerer. Gamer.

For my travelblog.ws project I store all dates as UTC in columns using the DATETIME data type i.e. my code converts dates to UTC before storing them. Because DATETIME is time zone agnostic this worked great, that is until I needed to use the TIMESTAMP data type on a number of new columns that I've added.

The TIMESTAMP data type is treated differently by MySQL, with it's values being converted to UTC for storage and back to the system time zone upon retrieval. This messed up a number of dates for me because all of a sudden some dates that should have matched were now 10 hours out (I'm in the AEST/GMT+10 time zone).
mysql_tz.png


The solution was to force MySQL to think it's in the UTC time zone so there was no need to worry about these automatic conversions. The catch was that I was not able to change the time zone setting on the MySQL server itself, so the change had to be done on a connection basis.

I was using PDO and simply executing "SET time_zone = '+00:00'" didn't seem to work for me, but eventually I did find a way to do this. Below is the code I used (adjust connection details to suit)...
 PHP
$dbHost = 'localhost';
$dbName = 'mydb';
$dbCharset = 'utf8';
$dbUser = 'user';
$dbPasswd = 'password';
$dbConnDsn = 'mysql:host=' .$dbHost.
';dbname=' .$dbName.
';charset=' . $dbCharset;
$initArr = array(\PDO::MYSQL_ATTR_INIT_COMMAND => "SET time_zone = '+00:00'");
$dbConn = new \PDO($dbConnDsn, $dbUser, $dbPasswd, $initArr);


The trick was to set the PDO::MYSQL_ATTR_INIT_COMMAND value to the SET time_zone = '+00:00' statement when creating the PDO object.

Once I added that code, MySQL treated all of my connections as if they were in the UTC time zone!



-i

A quick disclaimer...

Although I put in a great effort into researching all the topics I cover, mistakes can happen. Use of any information from my blog posts should be at own risk and I do not hold any liability towards any information misuse or damages caused by following any of my posts.

All content and opinions expressed on this Blog are my own and do not represent the opinions of my employer (Oracle). Use of any information contained in this blog post/article is subject to this disclaimer.
Hi! You can search my blog here ⤵
NOTE: (2022) This Blog is no longer maintained and I will not be answering any emails or comments.

I am now focusing on Atari Gamer.