I want to be able to store date-times with each row storing time zone too. Different rows can have different time zones. Like one event came from LA, another from NYC and a 3rd from Bangalore.
From the docs it seems the best way is to store the date part from Java in a date-time column and the time zone information in a varchar(10) seperate data base column or is there any better solution when we want different time zones in the same date-time attribute?
Reference : https://dev.mysql.com/doc/refman/5.5/en/datetime.html and How to store a datetime in MySQL with timezone info