'2013-08-25T17:00:00+00:00'
Questo è un valore datetime iso-8601 valido, ma non è un valore letterale datetime MySQL valido . Su quel punto, lo sviluppatore non è corretto.
La documentazione spiega cosa ALLOW_INVALID_DATES
:
Controlla solo che il mese sia compreso tra 1 e 12 e che il giorno sia compreso tra 1 e 31.
In altre parole, 2013-02-31
sarebbe una data consentita se allow_invalid_dates
impostata. Questa opzione non fa nulla quando la data o il datetime non sono nemmeno in un formato valido per MySQL.
L' +00:00
offset del fuso orario è UTC . In questo caso, il tempo espresso è in UTC, quindi l'offset è zero ore, zero minuti.
La vostra soluzione potrebbe essere quella di rimuovere il STRICT_TRANS_TABLES
dal sql_mode
che è un default nel file di configurazione creato durante il processo di installazione di MySQL 5.6 ... è necessario considerare con attenzione le implicazioni di questo cambiamento, ma non consentire i dati di andare in.
mysql> select @@sql_mode;
+--------------------------------------------+
| @@sql_mode |
+--------------------------------------------+
| STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION |
+--------------------------------------------+
1 row in set (0.00 sec)
mysql> insert into datetimetest(dt) values ('2013-08-26T12:00:00+00:00');
ERROR 1292 (22007): Incorrect datetime value: '2013-08-26T12:00:00+00:00' for column 'dt' at row 1
-- remove STRICT_TRANS_TABLES -- note that executing this only removes it for your
-- current session -- it does not make a server-wide config change
mysql> set @@sql_mode='no_engine_substitution';
Query OK, 0 rows affected (0.00 sec)
mysql> select @@sql_mode;
+------------------------+
| @@sql_mode |
+------------------------+
| NO_ENGINE_SUBSTITUTION |
+------------------------+
1 row in set (0.00 sec)
-- now MySQL will accept the invalid value, with a warning
mysql> insert into datetimetest(dt) values ('2013-08-26T12:00:00+00:00');
Query OK, 1 row affected, 1 warning (0.00 sec)
mysql> show warnings;
+---------+------+-----------------------------------------+
| Level | Code | Message |
+---------+------+-----------------------------------------+
| Warning | 1265 | Data truncated for column 'dt' at row 1 |
+---------+------+-----------------------------------------+
1 row in set (0.00 sec)
-- the value did get inserted, but the time zone information was lost:
mysql> select * from datetimetest;
+----+---------------------+
| id | dt |
+----+---------------------+
| 1 | 2013-08-26 12:00:00 |
+----+---------------------+
1 row in set (0.00 sec)