[svn:dbd-oracle] r14729 - dbd-oracle/trunk
[email protected] Fri, 4 Mar 2011 00:47:18 -0800 (PST)
| Newsgroups | perl.dbd.oracle.changes |
|---|---|
| Message-ID | <[email protected]> |
Author: mjevans
Date: Fri Mar 4 00:47:17 2011
New Revision: 14729
Modified:
dbd-oracle/trunk/Makefile.PL
dbd-oracle/trunk/Oracle.pm
Log:
Fix some typos in the pod
Bump Test::Simple requirement to 0.90 for note and done_testing
Modified: dbd-oracle/trunk/Makefile.PL
==============================================================================
--- dbd-oracle/trunk/Makefile.PL (original)
+++ dbd-oracle/trunk/Makefile.PL Fri Mar 4 00:47:17 2011
@@ -46,7 +46,7 @@
my %opts = (
NAME => 'DBD::Oracle',
VERSION_FROM => 'Oracle.pm',
- PREREQ_PM => { "Test::Simple" => 0.40, # actually Test::More pkg in T::S dist
+ PREREQ_PM => { "Test::Simple" => 0.90, # actually Test::More pkg in T::S dist
"DBI" => 1.51},
EXE_FILES => [ "ora_explain$exe_ext" ],
OBJECT => '$(O_FILES)',
Modified: dbd-oracle/trunk/Oracle.pm
==============================================================================
--- dbd-oracle/trunk/Oracle.pm (original)
+++ dbd-oracle/trunk/Oracle.pm Fri Mar 4 00:47:17 2011
@@ -1701,7 +1701,7 @@
=item ora_client_info
When passed in on the connection attributes it can specify any info you want
-onto the session up t0 64 bytes. This value can be
+onto the session up to 64 bytes. This value can be
retrieved on the server side using V$SESSION view.
my $dbh = DBI->connect($dsn, $user, $passwd, { ora_client_info => 'Remote2' });
@@ -1723,7 +1723,7 @@
=item ora_action
-You can set this value to anything you want up to 32byes.This value can be
+You can set this value to anything you want up to 32 bytes. This value can be
retrieved on the server side using V$SESSION view.
my $dbh = DBI->connect($dsn, $user, $passwd, { ora_action => "Login"});