SYNOPSIS

  use DateTime::Format::SQLite;

  my $dt = DateTime::Format::SQLite->parse_datetime( '2003-01-16 23:12:01' );

  # 2003-01-16 23:12:01
  DateTime::Format::SQLite->format_datetime($dt);

DESCRIPTION

This module understands the formats used by SQLite for its \*(C`date\*(C', \*(C`datetime\*(C' and \*(C`time\*(C' functions. It can be used to parse these formats in order to create DateTime objects, and it can take a DateTime object and produce a timestring accepted by SQLite.

\s-1NOTE:\s0 SQLite does not have real date/time types but stores everything as strings. This module deals with the date/time strings as understood/returned by SQLite's \*(C`date\*(C', \*(C`time\*(C', \*(C`datetime\*(C', \*(C`julianday\*(C' and \*(C`strftime\*(C' \s-1SQL\s0 functions. You will usually want to store your dates in one of these formats.

METHODS

This class offers the methods listed below. All of the parsing methods set the returned DateTime object's time zone to the \s-1UTC\s0 zone because SQLite does always uses \s-1UTC\s0 for date calculations. This means your dates may seem to be one day off if you convert them to local time.

  • parse_datetime($string) Given a $string representing a date, this method will return a new \*(C`DateTime\*(C' object. The $string may be in any of the formats understood by SQLite's \*(C`date\*(C', \*(C`time\*(C', \*(C`datetime\*(C', \*(C`julianday\*(C' and \*(C`strftime\*(C' \s-1SQL\s0 functions or it may be in the format returned by these functions (except \*(C`strftime\*(C', of course). The time zone for this object will always be in \s-1UTC\s0 because SQLite assumes \s-1UTC\s0 for all date calculations. If $string contains no date, the parser assumes 2000-01-01 (just like SQLite). If given an improperly formatted string, this method may die.

  • parse_date($string)

  • parse_time($string)

  • parse_julianday($string) These are aliases for \*(C`parse_datetime\*(C', for symmetry with \*(C`format_*\*(C' functions.

  • format_date($datetime) Given a \*(C`DateTime\*(C' object, this methods returnes a string in the format YYYY-MM-DD, i.e. in the same format SQLite's \*(C`date\*(C' function uses.

  • format_time($datetime) Given a \*(C`DateTime\*(C' object, this methods returnes a string in the format \s-1HH:MM:SS\s0, i.e. in the same format SQLite's \*(C`time\*(C' function uses.

  • format_datetime($datetime) Given a \*(C`DateTime\*(C' object, this methods returnes a string in the format YYYY-MM-DD \s-1HH:MM:SS\s0, i.e. in the same format SQLite's \*(C`datetime\*(C' function uses.

  • format_julianday($datetime) Given a \*(C`DateTime\*(C' object, this methods returnes a string in the format \s-1DDDDDDDDDD\s0, i.e. in the same format SQLite's \*(C`julianday\*(C' function uses.

AUTHOR

Claus Fa\*:rber <[email protected]>

based on \*(C`DateTime::Format::MySQL\*(C' by David Rolsky.

Copyright X 2008 Claus Fa\*:rber.

Copyright X 2003 David Rolsky.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the \s-1LICENSE\s0 file included with this module.

RELATED TO DateTime::Format::SQLite…

http://datetime.perl.org/

http://www.sqlite.org/lang_datefunc.html