X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI.pm;h=7a7bd6046f24f94f5aae262eb4aac8d07347e8a9;hb=84ccbc01107eeadbbac452d5368b4dd74f12ab8e;hp=32be00fa0c7a5776862802bfda326d1a600956ad;hpb=2b0abe0e1bc53bacd415d4d9f577bdf99415bc83;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI.pm b/lib/DBIx/Class/Storage/DBI.pm index 32be00f..7a7bd60 100644 --- a/lib/DBIx/Class/Storage/DBI.pm +++ b/lib/DBIx/Class/Storage/DBI.pm @@ -437,12 +437,21 @@ sub connect_info { } } - %attrs = () if (ref $args[0] eq 'CODE'); # _connect() never looks past $args[0] in this case + if (ref $args[0] eq 'CODE') { + # _connect() never looks past $args[0] in this case + %attrs = () + } else { + %attrs = (%{ $self->_dbi_connect_attributes }, %attrs); + } $self->_dbi_connect_info([@args, keys %attrs ? \%attrs : ()]); $self->_connect_info; } +sub _dbi_connect_attributes { + return { AutoCommit => 1 }; +} + =head2 on_connect_do This method is deprecated in favour of setting via L. @@ -621,7 +630,7 @@ database is not in C mode. sub disconnect { my ($self) = @_; - if( $self->connected ) { + if( $self->_dbh ) { my @actions; push @actions, ( $self->on_disconnect_call || () ); @@ -716,14 +725,32 @@ Returns the dbh - a data base handle of class L. sub dbh { my ($self) = @_; - $self->ensure_connected; + if (not $self->_dbh) { + $self->_populate_dbh; + } else { + $self->ensure_connected; + } + return $self->_dbh; +} + +sub _get_dbh { + my $self = shift; + + if (not $self->_dbh) { + $self->_populate_dbh; + } return $self->_dbh; } sub _sql_maker_args { my ($self) = @_; - return ( bindtype=>'columns', array_datatypes => 1, limit_dialect => $self->dbh, %{$self->_sql_maker_opts} ); + return ( + bindtype=>'columns', + array_datatypes => 1, + limit_dialect => $self->_get_dbh, + %{$self->_sql_maker_opts} + ); } sub sql_maker { @@ -740,6 +767,7 @@ sub _rebless {} sub _populate_dbh { my ($self) = @_; + my @info = @{$self->_dbi_connect_info || []}; $self->_dbh($self->_connect(@info)); @@ -752,6 +780,11 @@ sub _populate_dbh { # there is no transaction in progress by definition $self->{transaction_depth} = $self->_dbh_autocommit ? 0 : 1; + $self->_run_connection_actions unless $self->{_in_determine_driver}; +} + +sub _run_connection_actions { + my $self = shift; my @actions; push @actions, ( $self->on_connect_call || () ); @@ -766,6 +799,8 @@ sub _determine_driver { if (not $self->_driver_determined) { if (ref($self) eq __PACKAGE__) { my $driver; + my $started_unconnected = 0; + local $self->{_in_determine_driver} = 1; if ($self->_dbh) { # we are connected $driver = $self->_dbh->{Driver}{Name}; @@ -781,9 +816,13 @@ sub _determine_driver { bless $self, $storage_class; $self->_rebless(); } + $started_unconnected = 1; } $self->_driver_determined(1); + + $self->_run_connection_actions + if $started_unconnected && defined $self->_dbh; } } @@ -983,14 +1022,13 @@ sub _svp_generate_name { sub txn_begin { my $self = shift; - $self->ensure_connected(); if($self->{transaction_depth} == 0) { $self->debugobj->txn_begin() if $self->debug; # this isn't ->_dbh-> because # we should reconnect on begin_work # for AutoCommit users - $self->dbh->begin_work; + $self->dbh_do(sub { $_[1]->begin_work }); } elsif ($self->auto_savepoint) { $self->svp_begin; } @@ -1162,7 +1200,11 @@ sub insert { my $col_info = $source->column_info($col); if ( $col_info->{auto_nextval} ) { - $updated_cols->{$col} = $to_insert->{$col} = $self->_sequence_fetch( 'nextval', $col_info->{sequence} || $self->_dbh_get_autoinc_seq($self->dbh, $source) ); + $updated_cols->{$col} = $to_insert->{$col} = $self->_sequence_fetch( + 'nextval', + $col_info->{sequence} || + $self->_dbh_get_autoinc_seq($self->_get_dbh, $source) + ); } } } @@ -1183,6 +1225,8 @@ sub insert_bulk { @colvalues{@$cols} = (0..$#$cols); my ($sql, @bind) = $self->sql_maker->insert($table, \%colvalues); + $self->_determine_driver; + $self->_query_start( $sql, @bind ); my $sth = $self->sth($sql); @@ -1242,6 +1286,7 @@ sub insert_bulk { sub update { my $self = shift @_; my $source = shift @_; + $self->_determine_driver; my $bind_attributes = $self->source_bind_attributes($source); return $self->_execute('update' => [], $source, $bind_attributes, @_); @@ -1251,7 +1296,7 @@ sub update { sub delete { my $self = shift @_; my $source = shift @_; - + $self->_determine_driver; my $bind_attrs = $self->source_bind_attributes($source); return $self->_execute('delete' => [], $source, $bind_attrs, @_); @@ -1948,7 +1993,7 @@ Returns the database driver name. =cut -sub sqlt_type { shift->dbh->{Driver}->{Name} } +sub sqlt_type { shift->_get_dbh->{Driver}->{Name} } =head2 bind_attribute_by_data_type @@ -2195,7 +2240,7 @@ See L for a list of values for C<$sqlt_args>. sub deployment_statements { my ($self, $schema, $type, $version, $dir, $sqltargs) = @_; # Need to be connected to get the correct sqlt_type - $self->ensure_connected() unless $type; + $self->_get_dbh() unless $type; $type ||= $self->sqlt_type; $version ||= $schema->schema_version || '1.x'; $dir ||= './'; @@ -2240,7 +2285,7 @@ sub deploy { return if $line =~ /^\s+$/; # skip whitespace only $self->_query_start($line); eval { - $self->dbh->do($line); # shouldn't be using ->dbh ? + $self->_get_dbh->do($line); }; if ($@) { carp qq{$@ (running "${line}")}; @@ -2269,7 +2314,7 @@ Returns the datetime parser class sub datetime_parser { my $self = shift; return $self->{datetime_parser} ||= do { - $self->ensure_connected; + $self->_get_dbh; $self->build_datetime_parser(@_); }; }