Author: timbo
Date: Mon Sep  1 14:45:51 2008
New Revision: 11719

Modified:
   dbi/trunk/Changes
   dbi/trunk/lib/DBI/DBD.pm

Log:
Improved DBI::DBD docs thanks to H.Merijn Brand.


Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes   (original)
+++ dbi/trunk/Changes   Mon Sep  1 14:45:51 2008
@@ -60,6 +60,7 @@
     and updated DBI::DBD docs thanks to Martin J. Evans.
 
   Corrected many typos in DBI docs thanks to Martin J. Evans.
+  Improved DBI::DBD docs thanks to H.Merijn Brand.
 
 =head2 Changes in DBI 1.607 (svn r11571) 22nd July 2008
 

Modified: dbi/trunk/lib/DBI/DBD.pm
==============================================================================
--- dbi/trunk/lib/DBI/DBD.pm    (original)
+++ dbi/trunk/lib/DBI/DBD.pm    Mon Sep  1 14:45:51 2008
@@ -2644,8 +2644,8 @@
 
 With the pre-requisites in place, you might type:
 
-    perl -MDBI::DBD::Metadata -e write_getinfo_pm \
-            dbi:ODBC:foo_db username password Driver
+    perl -MDBI::DBD::Metadata -we \
+       "write_getinfo_pm (qw{ dbi:ODBC:foo_db username password Driver })"
 
 The procedure writes to standard output the code that should be added to
 your F<Driver.pm> file and the code that should be written to
@@ -2669,8 +2669,8 @@
 
 With the pre-requisites in place, you might type:
 
-    perl -MDBI::DBD::Metadata -e write_typeinfo \
-            dbi:ODBC:foo_db username password Driver
+    perl -MDBI::DBD::Metadata -we \
+       "write_typeinfo (qw{ dbi:ODBC:foo_db username password Driver })"
 
 The procedure writes to standard output the code that should be added to
 your F<Driver.pm> file and the code that should be written to

Reply via email to