Author: timbo
Date: Mon Aug 9 06:50:45 2004
New Revision: 426
Modified:
dbi/trunk/Changes
dbi/trunk/DBI.pm
dbi/trunk/ToDo
dbi/trunk/lib/DBI/DBD.pm
Log:
Fixed build issues on VMS thanks to Jakob Snoer.
Bump version to 1.44
Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes (original)
+++ dbi/trunk/Changes Mon Aug 9 06:50:45 2004
@@ -6,7 +6,7 @@
=head2 Changes in DBI 1.44 (svn rev ???), XXX
- Fixed build warnings on VMS reported by Jakob Snoer.
+ Fixed build issues on VMS thanks to Jakob Snoer.
Changed bind_param_array() so it doesn't require all bind arrays
to have the same number of elements.
@@ -15,7 +15,7 @@
Changed execute_array() to return "0E0" for 0 as per the docs.
Changed execute_for_fetch() definition, and default implementation,
to return "0E0" for 0 like execute() and execute_array().
- Changed Test::More prerequisite to Test::Simple, which is also the name
+ Changed Test::More prerequisite to Test::Simple (which is also the name
of the distribution both are packaged in) to work around ppm behaviour.
Corrected docs to say that get/set of unknown attribute generates
Modified: dbi/trunk/DBI.pm
==============================================================================
--- dbi/trunk/DBI.pm (original)
+++ dbi/trunk/DBI.pm Mon Aug 9 06:50:45 2004
@@ -9,7 +9,7 @@
require 5.006_00;
BEGIN {
-$DBI::VERSION = "1.43"; # ==> ALSO update the version in the pod text below!
+$DBI::VERSION = "1.44"; # ==> 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.43.
+This is the DBI specification that corresponds to the DBI version 1.44.
The DBI is evolving at a steady pace, so it's good to check that
you have the latest copy.
Modified: dbi/trunk/ToDo
==============================================================================
--- dbi/trunk/ToDo (original)
+++ dbi/trunk/ToDo Mon Aug 9 06:50:45 2004
@@ -124,6 +124,8 @@
valid-looking utf8. To be used (perhaps via OnFetch hook) where
utf8 data is being stored in a non-utf8 aware database.
+pre and post call hooks via ima structure?
+
Remove _not_impl. Alias debug to trace in DBI::(dr/db/st) and remove
debug() method from internals.
Modified: dbi/trunk/lib/DBI/DBD.pm
==============================================================================
--- dbi/trunk/lib/DBI/DBD.pm (original)
+++ dbi/trunk/lib/DBI/DBD.pm Mon Aug 9 06:50:45 2004
@@ -3738,8 +3738,8 @@
_inst_checks();
return '$(INST_ARCHAUTODIR)' if $is_dbi;
my $dbidir = dbd_dbi_dir();
- my @try = map { "$_/auto/DBI" } @INC;
- my @xst = grep { -f "$_/Driver.xst" } @try;
+ my @try = map { vmsify( unixify($_) . "/auto/DBI/" ) } @INC;
+ my @xst = grep { -f vmsify( unixify($_) . "/Driver.xst" ) } @try;
Carp::croak("Unable to locate Driver.xst in @try") unless @xst;
Carp::carp( "Multiple copies of Driver.xst found in: @xst") if @xst > 1;
print "Using DBI $DBI::VERSION (for perl $] on $Config{archname}) installed in
$xst[0]\n";