vote up 0 vote down star

Does anyone know of a workaround for storing values outside of the range '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC in a MySQL TIMESTAMP field?

flag

25% accept rate

2 Answers

vote up 1 vote down

If you alter the column to use the DATETIME type, you can store a wider range of values.

the TIMESTAMP type's range is '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC.

the DATETIME type's range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'.

link|flag
My reason in using TIMESTAMP is that it automatically converts the date value based on the database connection's timezone setting. – Chad Johnson Jun 16 at 16:49
vote up 0 vote down

TIMESTAMP shouldn't be used for literal date/time values, it is for SQL Server synchronization.

Use SMALLDATETIME or DATETIME.

link|flag
Plus, it automatically converts the date to the timezone set for the connection. Pushing this conversion to the database level, out of the code level, makes a LOT of sense and prevents a LOT of potential bugs. – Chad Johnson Jun 16 at 16:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.