http://www.perlmonks.org?node_id=318690


in reply to Time::Piece::MySQL

I'm quite sure that this module will have a lot of good uses, but the example you give is --IMHO-- not one of such, as this problem can be solved from within MySQL itself:

UPDATE events SET date = DATE_ADD(date, INTERVAL 50 DAY) WHERE id = ? will add 50 days to the date in the date-field.

CountZero

"If you have four groups working on a compiler, you'll get a 4-pass compiler." - Conway's Law