package DateTime::Format::DBI; # $Id: DBI.pm 4457 2010-10-19 13:35:13Z cfaerber $ use strict; use vars qw ($VERSION); use warnings; use Carp; use DBI 1.21; $VERSION = '0.040'; $VERSION = eval { $VERSION }; our %db_to_parser = ( # lowercase for case-insensitivity! 'mysql' => 'DateTime::Format::MySQL', 'pg' => 'DateTime::Format::Pg', 'db2' => 'DateTime::Format::DB2', 'mssql' => 'DateTime::Format::MSSQL', # experimental 'oracle' => 'DateTime::Format::Oracle', 'sqlite' => 'DateTime::Format::SQLite', 'sybase' => 'DateTime::Format::Sybase', ); sub _get_parser { while(@_) { my $dbt = lc shift; return $db_to_parser{$dbt} if exists $db_to_parser{$dbt}; } return undef; } sub new { my ($name,$dbh) = @_; UNIVERSAL::isa($dbh,'DBI::db') || croak('Not a DBI handle.'); # NB: Using $dbh->{Driver}->{Name} this call does not work with drivers that # connect to multiple differnt types of databases, such as DBD::Proxy, # DBD::ODBC, DBD::JDBC,... # # DBI already has code to determine the underlying database type, which is NOT # trivial. I don't want to duplicate that here (although it's only available # through a private API). # my $dbtype = $dbh->{Driver}->{Name}; my @dbtypes = eval { DBI::_dbtype_names($dbh,0) }; my $pclass = _get_parser(@dbtypes); croak("No supported database driver in '@dbtypes'") unless defined $pclass; eval "use $pclass;"; croak("Cannot load $pclass: $@") if $@; ## some db formatters are singletons and don't have 'new' ## my $new = UNIVERSAL::can($pclass, 'new'); my $parser; if(ref $new) { $parser = eval { $new->($pclass); }; croak "Cannot create object for $pclass: $@" if $@; } else { $parser = $pclass; } foreach(('format_datetime', 'parse_datetime')) { croak "$pclass->$_ is missing" unless UNIVERSAL::can($parser, $_) } return $parser; } =head1 NAME DateTime::Format::DBI - Find a parser class for a database connection. =head1 SYNOPSIS use DBI; use DateTime; use DateTime::Format::DBI; my $db = DBI->connect('dbi:...'); my $db_parser = DateTime::Format::DBI->new($dbh); my $dt = DateTime->now(); $db->do("UPDATE table SET dt=? WHERE foo='bar'",undef, $db_parser->format_datetime($dt); =head1 DESCRIPTION This module finds a C class that is suitable for the use with a given DBI connection (and C driver). It currently supports the following format modules: L, L, L, L, L, L, and L. B This module provides a quick method to find the correct parser and formatter class. However, this is usually not sufficient for full database abstraction. You will also have to cater for differences in the syntax and semantics of SQL datetime functions (and other SQL commands). =head1 CLASS METHODS This module provides a single factory method: =over 4 =item * new( $dbh ) Creates a new C instance, the exact class of which depends on the database driver used for the database connection referenced by C<$dbh>. =back =head1 PARSER/FORMATTER INTERFACE C is just a front-end class factory that will return one of the format classes based on the nature of your C<$dbh>. For information on the interface of the returned parser object, please see the documentation for the class pertaining to your particular C<$dbh>. In general, parser classes for databases will implement the following methods. For more information on the exact behaviour of these methods, see the documentation of the parser class. =over 4 =item * parse_datetime( $string ) Given a string containing a date and/or time representation from the database used, this method will return a new C object. If given an improperly formatted string, this method may die. =item * format_datetime( $dt ) Given a C object, this method returns a string appropriate as input for all or the most common date and date/time types of the database used. =item * parse_duration( $string ) Given a string containing a duration representation from the database used, this method will return a new C object. If given an improperly formatted string, this method may die. Not all databases and format/formatter classes support durations; please use L to check for the availability of this method. =item * format_duration( $du ) Given a C object, this method returns a string appropriate as input for the duration or interval type of the database used. Not all databases and parser/formatter classes support durations; please use L to check for the availability of this method. =back Parser/formatter classes may additionally define methods like parse_I or format_I (where I is derived from the SQL type); please see the documentation of the individual format class for more information. =head1 SUPPORT Please report bugs and other requests to the rt tracker: L. =head1 AUTHOR Claus FErber =head1 LICENSE Copyright 2003-2010 Claus FErber. All rights reserved. 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 LICENSE file included with this module. =head1 SEE ALSO L, L datetime@perl.org mailing list http://datetime.perl.org/ =cut