Author: timbo
Date: Tue Feb 14 01:58:10 2006
New Revision: 2497
Modified:
dbi/trunk/Changes
dbi/trunk/DBI.pm
dbi/trunk/Makefile.PL
Log:
Remove 'use Test::*' from Makefile.PL
Added reference to $DBI::neat_maxlen in TRACING section of docs.
Update version to 1.51
Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes (original)
+++ dbi/trunk/Changes Tue Feb 14 01:58:10 2006
@@ -24,6 +24,7 @@ DBI::Changes - List of significant chang
Added 'fetch array of hash refs' example to selectall_arrayref
docs thanks to Tom Schindl.
+ Added reference to $DBI::neat_maxlen in TRACING section of docs.
=head2 Changes in DBI 1.50 (svn rev 2307), 13 December 2005
Modified: dbi/trunk/DBI.pm
==============================================================================
--- dbi/trunk/DBI.pm (original)
+++ dbi/trunk/DBI.pm Tue Feb 14 01:58:10 2006
@@ -9,7 +9,7 @@
require 5.006_00;
BEGIN {
-$DBI::VERSION = "1.50"; # ==> ALSO update the version in the pod text below!
+$DBI::VERSION = "1.51"; # ==> ALSO update the version in the pod text below!
}
=head1 NAME
@@ -116,7 +116,7 @@ Tim he's very likely to just forward it
=head2 NOTES
-This is the DBI specification that corresponds to the DBI version 1.50.
+This is the DBI specification that corresponds to the DBI version 1.51.
The DBI is evolving at a steady pace, so it's good to check that
you have the latest copy.
@@ -6597,7 +6597,7 @@ afterwards.
DBI can be subclassed and extended just like any other object
oriented module. Before we talk about how to do that, it's important
-to be clear about how the DBI classes and how they work together.
+to be clear about the various DBI classes and how they work together.
By default C<$dbh = DBI-E<gt>connect(...)> returns a $dbh blessed
into the C<DBI::db> class. And the C<$dbh-E<gt>prepare> method
@@ -6818,6 +6818,12 @@ Currently $trace_filename can't be a fil
can use the special strings C<"STDERR"> and C<"STDOUT"> to select
those filehandles.
+=head2 Trace Content
+
+Many of the values embeded in trace output are formatted using the neat()
+utility function. This means they may be quoted, sanitized, and possibly
+truncated if longer than C<$DBI::neat_maxlen>. See L</neat> for more details.
+
=head2 Tracing Tips
You can add tracing to your own application code using the
Modified: dbi/trunk/Makefile.PL
==============================================================================
--- dbi/trunk/Makefile.PL (original)
+++ dbi/trunk/Makefile.PL Tue Feb 14 01:58:10 2006
@@ -2,7 +2,7 @@
#
# $Id$
#
-# Copyright (c) 1994-2002 Tim Bunce England
+# Copyright (c) 1994-2006 Tim Bunce Ireland
#
# See COPYRIGHT section in DBI.pm for usage and distribution rights.
@@ -18,9 +18,6 @@ use File::Find;
use File::Spec;
use strict;
-use Test::Harness; # tests use it so check it's loadable early
-use Test::More 0.4; # tests use it so check it's loadable early
-
use DBI::DBD;
$| = 1;