X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FODBC%2FFirebird.pm;h=91f7292226daf062479ca358d659217a73e419e5;hb=ddcc02d14d03169c54c65db9f0f446836483ba55;hp=fd13a3b80a72375da4139ed2bcf9e2dbba6c8aa4;hpb=1ae0a36c48e132bdd9852248c4db50f889e65719;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 fd13a3b..91f7292 100644 --- a/lib/DBIx/Class/Storage/DBI/ODBC/Firebird.pm +++ b/lib/DBIx/Class/Storage/DBI/ODBC/Firebird.pm @@ -2,34 +2,78 @@ 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 DBIx::Class::_Util 'dbic_internal_try'; +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 -# RETURNING ("foo") is broken in ODBC, but RETURNING (foo) works -sub _quote_column_for_returning { - return $_[1]; +# 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(@_); } -1; +# releasing savepoints doesn't work for some reason, but that shouldn't matter +sub _exec_svp_release { 1 } -=head1 AUTHOR +sub _exec_svp_rollback { + my ($self, $name) = @_; -See L and L. + dbic_internal_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($_); + } + }; +} -=head1 LICENSE +=head1 FURTHER QUESTIONS? + +Check the list of L. + +=head1 COPYRIGHT AND LICENSE + +This module is free software L +by the L. You can +redistribute it and/or modify it under the same terms as the +L. -You may distribute this code under the same terms as Perl itself. =cut + +# vim:sts=2 sw=2: + +1;