I'm using Silex with Doctrine DBAL.
I'm been trying to set time_zone in a query, but nothing seems to work!
$sql ="SET time_zone = '+1:00';";
$time = $app['db']->exec($sql);
$sql ="SELECT UTC_TIMESTAMP();";
$time = $app['db']->fetchAssoc($sql);
print_r($time);
Anyone got tips to make it work?