X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FODBC%2FFirebird.pm;h=ac0afbbef7583e69a514aa8cf1eec413d14af406;hb=11f7049f71cd5d6b891e8addd3c0d9cd2a27c3e8;hp=a17fa4a0ad7a6b143c34828de3e65c150bc9914f;hpb=90489c23e598723752c9e0d4b4da214ad05e3feb;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/ODBC/Firebird.pm b/lib/DBIx/Class/Storage/DBI/ODBC/Firebird.pm index a17fa4a..ac0afbb 100644 --- a/lib/DBIx/Class/Storage/DBI/ODBC/Firebird.pm +++ b/lib/DBIx/Class/Storage/DBI/ODBC/Firebird.pm @@ -2,39 +2,92 @@ package DBIx::Class::Storage::DBI::ODBC::Firebird; use strict; use warnings; -use base qw/DBIx::Class::Storage::DBI::InterBase/; +use base qw/ + DBIx::Class::Storage::DBI::ODBC + DBIx::Class::Storage::DBI::Firebird::Common +/; use mro 'c3'; +use Try::Tiny; +use namespace::clean; =head1 NAME DBIx::Class::Storage::DBI::ODBC::Firebird - Driver for using the Firebird RDBMS through ODBC -=head1 SYNOPSIS +=head1 DESCRIPTION -All functionality is provided by L, see -that module for details. +Most functionality is provided by +L, see that driver for details. To build the ODBC driver for Firebird on Linux for unixODBC, see: L +This driver does not suffer from the nested statement handles across commits +issue that the L or the +L based driver does. This +makes it more suitable for long running processes such as under L. + =cut -__PACKAGE__->sql_maker_class('DBIx::Class::SQLAHacks::ODBC::Firebird'); +__PACKAGE__->datetime_parser_type ('DBIx::Class::Storage::DBI::ODBC::Firebird::DateTime::Format'); + +# batch operations in DBD::ODBC 1.35 do not work with the official ODBC driver +sub _run_connection_actions { + my $self = shift; + + if ($self->_dbh_get_info('SQL_DRIVER_NAME') eq 'OdbcFb') { + $self->_disable_odbc_array_ops; + } + + return $self->next::method(@_); +} + +# releasing savepoints doesn't work for some reason, but that shouldn't matter +sub _exec_svp_release { 1 } + +sub _exec_svp_rollback { + my ($self, $name) = @_; + + try { + $self->_dbh->do("ROLLBACK TO SAVEPOINT $name") + } + catch { + # Firebird ODBC driver bug, ignore + if (not /Unable to fetch information about the error/) { + $self->throw_exception($_); + } + }; +} + +package # hide from PAUSE + DBIx::Class::Storage::DBI::ODBC::Firebird::DateTime::Format; -sub datetime_parser_type { __PACKAGE__ } +# inherit parse/format date +our @ISA = 'DBIx::Class::Storage::DBI::InterBase::DateTime::Format'; -my $datetime_parser; +my $timestamp_format = '%Y-%m-%d %H:%M:%S.%4N'; # %F %T +my $timestamp_parser; sub parse_datetime { - shift; - require DateTime::Format::Strptime; - $datetime_parser ||= DateTime::Format::Strptime->new( - pattern => '%F %H:%M:%S', - on_error => 'croak', - ); - $datetime_parser->parse_datetime(shift); + shift; + require DateTime::Format::Strptime; + $timestamp_parser ||= DateTime::Format::Strptime->new( + pattern => $timestamp_format, + on_error => 'croak', + ); + return $timestamp_parser->parse_datetime(shift); +} + +sub format_datetime { + shift; + require DateTime::Format::Strptime; + $timestamp_parser ||= DateTime::Format::Strptime->new( + pattern => $timestamp_format, + on_error => 'croak', + ); + return $timestamp_parser->format_datetime(shift); } 1; @@ -48,3 +101,4 @@ See L and L. You may distribute this code under the same terms as Perl itself. =cut +# vim:sts=2 sw=2: