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:
use strict;
use warnings;
use DBI;
use Time::Seconds;
use Time::Piece::MySQL;
my $dbh = DBI->connect( ... );
my $sth = $dbh->prepare('update events set date = ? where id = ?');
my $dates = $dbh->selectall_arrayref(
'select id,date from events', {Slice => {}}
);
for (@$dates) {
my $date = localtime->from_mysql_datetime( $_->{date} );
$date += ONE_DAY * 50;
$sth->execute( $date->mysql_datetime, $_->{id} );
}
A very trivial example, but i think it demonstrates how it can make someone's Perl/MySQL
script easier to work with.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|