File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ DBI::Changes - List of significant changes to the DBI
6
6
7
7
=cut
8
8
9
+ =head2 Changes in DBI 1.632
10
+
11
+ Fixed DBD::PurePerl to not set $sth->{Active} true by default
12
+ drivers are expected to set it true as needed.
13
+
14
+
9
15
=head2 Changes in DBI 1.631 - 20th Jan 2014
10
16
11
17
NOTE: This release changes the handle passed to Callbacks from being an 'inner'
Original file line number Diff line number Diff line change @@ -540,7 +540,7 @@ sub _setup_handle {
540
540
$h_inner -> {" dbi_pp_call_depth" } = 0;
541
541
$h_inner -> {" dbi_pp_pid" } = $$ ;
542
542
$h_inner -> {ErrCount } = 0;
543
- $h_inner -> {Active } = 1;
543
+ $h_inner -> {Active } = 0; # driver should set true when there's data to fetch
544
544
}
545
545
546
546
sub constant {
You can’t perform that action at this time.
0 commit comments