Author: timbo
Date: Sun Jul 25 11:15:57 2004
New Revision: 410

Modified:
   dbi/trunk/Changes
   dbi/trunk/DBI.pm
Log:
Corrected docs to say that get/set of unknown attribute generates
  a warning and is no longer fatal. Thanks to Vadim.


Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Sun Jul 25 11:15:57 2004
@@ -14,6 +14,9 @@
   Changed execute_for_fetch() definition, and default implementation,
     to return "0E0" for 0 like execute() and execute_array().
 
+  Corrected docs to say that get/set of unknown attribute generates
+    a warning and is no longer fatal. Thanks to Vadim.
+
 =head1 CHANGES in DBI 1.43 (svn rev 377),    2nd July 2004
 
   Fixed connect() and connect_cached() RaiseError/PrintError

Modified: dbi/trunk/DBI.pm
==============================================================================
--- dbi/trunk/DBI.pm    (original)
+++ dbi/trunk/DBI.pm    Sun Jul 25 11:15:57 2004
@@ -2846,7 +2846,7 @@
 and changes to the database handle do not affect existing statement
 handles, only future ones.
 
-Attempting to set or get the value of an unknown attribute is fatal,
+Attempting to set or get the value of an unknown attribute generates a warning,
 except for private driver specific attributes (which all have names
 starting with a lowercase letter).
 
@@ -4599,7 +4599,7 @@
 Changes to these database handle attributes do not affect any other
 existing or future database handles.
 
-Attempting to set or get the value of an unknown attribute is fatal,
+Attempting to set or get the value of an unknown attribute generates a warning,
 except for private driver-specific attributes (which all have names
 starting with a lowercase letter).
 
@@ -5485,7 +5485,7 @@
 Changes to these statement handle attributes do not affect any other
 existing or future statement handles.
 
-Attempting to set or get the value of an unknown attribute is I<fatal>,
+Attempting to set or get the value of an unknown attribute generates a warning,
 except for private driver specific attributes (which all have names
 starting with a lowercase letter).
 

Reply via email to