in reply to Mocking time with SQLite
#!/usr/bin/perl use strict; use warnings; use DateTime::Format::SQLite; my $dt = DateTime::Format::SQLite->parse_datetime( '2010-12-26 04:41:2 +0' ); print DateTime::Format::SQLite->format_datetime($dt), "\n";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Mocking time with SQLite
by jaldhar (Vicar) on Dec 26, 2010 at 13:21 UTC |