Author: timbo
Date: Tue Mar 9 07:02:47 2004
New Revision: 207
Modified:
dbi/trunk/Changes
dbi/trunk/DBI.pm
Log:
Prep for 1.42 release candidate 1
Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes (original)
+++ dbi/trunk/Changes Tue Mar 9 07:02:47 2004
@@ -4,10 +4,10 @@
=cut
-=head1 CHANGES in DBI 1.42 (svn rev XX), XXnd February 2004
-
Document $t->parse_trace_flags etc
+=head1 CHANGES in DBI 1.42 (svn rev 261), 9th March 2004
+
Fixed $sth->{NUM_OF_FIELDS} of non-executed statement handle
to be undef as per the docs (it was 0).
Fixed t/41prof_dump.t to work with perl5.9.1.
@@ -29,7 +29,9 @@
setting the trace level to a non-numeric value:
$h->{TraceLevel}="foo|SQL|7"; $h->trace("foo|SQL|7");
DBI->connect("dbi:Driver(TraceLevel=SQL|foo):...", ...);
+ Currently no trace flags have been defined.
Added to, and reworked, the trace documentation.
+ Added dbivport.h for driver authors to use.
Major driver additions that Jeff Zucker and I have been working on:
Modified: dbi/trunk/DBI.pm
==============================================================================
--- dbi/trunk/DBI.pm (original)
+++ dbi/trunk/DBI.pm Tue Mar 9 07:02:47 2004
@@ -9,7 +9,7 @@
require 5.006_00;
BEGIN {
-$DBI::VERSION = "1.41"; # ==> ALSO update the version in the pod text below!
+$DBI::VERSION = "1.42"; # ==> ALSO update the version in the pod text below!
}
=head1 NAME
@@ -118,7 +118,7 @@
=head2 NOTES
-This is the DBI specification that corresponds to the DBI version 1.41
+This is the DBI specification that corresponds to the DBI version 1.42
(C<$Date: 2004/02/01 11:16:16 $>).
The DBI is evolving at a steady pace, so it's good to check that