|
|
| Pathologically Eclectic Rubbish Lister | |
| PerlMonks |
Time::Piece::MySQLby jeffa (Chancellor) |
| on Jan 04, 2004 at 19:02 UTC ( #318677=modulereview: print w/ replies, xml ) | Need Help?? |
|
Item Description: Bridges the gap between Perl and MySQL date-time types Review Synopsis:
Time::Piece::MySQL is a very useful module for MySQL users. It is simply an extension to Time::Piece that provides a handful of methods for converting back and forth between Time::Piece objects and the MySQL date/time types: date, time, datetime, and timestamp. (The year type is available from Time::Piece, so it doesn't need to be here.) As an example, say i had a table of events that contained an id and a datetime field: +---------+------------------+ | Field | Type | +---------+------------------+ | id | int(10) unsigned | | date | datetime | +---------+------------------+and i wanted to add 50 days to to each date. The following snippet would do just that: A very trivial example, but i think it demonstrates how it can make someone's Perl/MySQL script easier to work with.
|
|
||||||||||||||||||||||