X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FInterBase.pm;h=e6a9143701dac250f90e39cf454f980ffa24667f;hb=227d836679dd2e91b1cf49c3d9e566be79f49297;hp=f8b31a2c97d3c2011779e871b81be2fe3c27f421;hpb=4d4dc51818371c6762e3675568a2e0c4c89d6c60;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/InterBase.pm b/lib/DBIx/Class/Storage/DBI/InterBase.pm index f8b31a2..e6a9143 100644 --- a/lib/DBIx/Class/Storage/DBI/InterBase.pm +++ b/lib/DBIx/Class/Storage/DBI/InterBase.pm @@ -6,10 +6,6 @@ use base qw/DBIx::Class::Storage::DBI/; use mro 'c3'; use List::Util(); -__PACKAGE__->mk_group_accessors(simple => qw/ - _auto_incs -/); - =head1 NAME DBIx::Class::Storage::DBI::InterBase - Driver for the Firebird RDBMS @@ -33,56 +29,7 @@ L. =cut -sub _prep_for_execute { - my $self = shift; - my ($op, $extra_bind, $ident, $args) = @_; - - if ($op eq 'insert') { - $self->_auto_incs([]); - - my %pk; - @pk{$ident->primary_columns} = (); - - my @auto_inc_cols = grep { - my $inserting = $args->[0]{$_}; - - ($ident->column_info($_)->{is_auto_increment} - || exists $pk{$_}) - && ( - (not defined $inserting) - || - (ref $inserting eq 'SCALAR' && $$inserting =~ /^null\z/i) - ) - } $ident->columns; - - if (@auto_inc_cols) { - $args->[1]{returning} = \@auto_inc_cols; - - $self->_auto_incs->[0] = \@auto_inc_cols; - } - } - - return $self->next::method(@_); -} - -sub _execute { - my $self = shift; - my ($op) = @_; - - my ($rv, $sth, @bind) = $self->dbh_do($self->can('_dbh_execute'), @_); - - if ($op eq 'insert' && $self->_auto_incs) { - local $@; - my (@auto_incs) = eval { - local $SIG{__WARN__} = sub {}; - $sth->fetchrow_array - }; - $self->_auto_incs->[1] = \@auto_incs; - $sth->finish; - } - - return wantarray ? ($rv, $sth, @bind) : $rv; -} +sub _supports_insert_returning { 1 } sub _sequence_fetch { my ($self, $nextval, $sequence) = @_; @@ -140,34 +87,6 @@ EOF return undef; } -sub last_insert_id { - my ($self, $source, @cols) = @_; - my @result; - - my %auto_incs; - @auto_incs{ @{ $self->_auto_incs->[0] } } = - @{ $self->_auto_incs->[1] }; - - push @result, $auto_incs{$_} for @cols; - - return @result; -} - -sub insert { - my $self = shift; - - my $updated_cols = $self->next::method(@_); - - if ($self->_auto_incs->[0]) { - my %auto_incs; - @auto_incs{ @{ $self->_auto_incs->[0] } } = @{ $self->_auto_incs->[1] }; - - $updated_cols = { %$updated_cols, %auto_incs }; - } - - return $updated_cols; -} - # this sub stolen from DB2 sub _sql_maker_opts { @@ -236,6 +155,16 @@ sub _set_sql_dialect { } } +sub _populate_server_info { + my $self = shift; + + return $self->next::method(@_) if ref $self ne __PACKAGE__; + + local $SIG{__WARN__} = sub {}; # silence warning due to bug in DBD::InterBase + + return $self->next::method(@_); +} + =head2 connect_call_use_softcommit Used as: