From: Brandon L. Black Date: Tue, 14 Feb 2006 06:01:10 +0000 (+0000) Subject: storage fix for fork() and workaround for Apache::DBI X-Git-Tag: v0.06000~104 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5ef3e508fa20d477b62406146cdca0ae658c10dd;p=dbsrgits%2FDBIx-Class.git storage fix for fork() and workaround for Apache::DBI --- diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index f643441..e071810 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -167,7 +167,8 @@ use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/AccessorGroup/); __PACKAGE__->mk_group_accessors('simple' => - qw/connect_info _dbh _sql_maker debug debugfh cursor on_connect_do transaction_depth/); + qw/connect_info _dbh _sql_maker _connection_pid debug debugfh cursor + on_connect_do transaction_depth/); sub new { my $new = bless({}, ref $_[0] || $_[0]); @@ -256,6 +257,8 @@ sub ensure_connected { sub dbh { my ($self) = @_; + $self->_dbh(undef) + if $self->_connection_pid && $self->_connection_pid != $$; $self->ensure_connected; return $self->_dbh; } @@ -277,11 +280,22 @@ sub _populate_dbh { foreach my $sql_statement (@{$self->on_connect_do || []}) { $self->_dbh->do($sql_statement); } + + $self->_connection_pid($$); } sub _connect { my ($self, @info) = @_; - return DBI->connect(@info); + + if ($INC{'Apache/DBI.pm'} && $ENV{MOD_PERL}) { + my $old_connect_via = $DBI::connect_via; + $DBI::connect_via = 'connect'; + my $dbh = DBI->connect(@info); + $DBI::connect_via = $old_connect_via; + return $dbh; + } + + DBI->connect(@info); } =head2 txn_begin