[svn:dbd-oracle] r14699 - dbd-oracle/trunk
[email protected] Thu, 10 Feb 2011 07:19:01 -0800 (PST)
| Newsgroups | perl.dbd.oracle.changes |
|---|---|
| Message-ID | <[email protected]> |
Author: byterock
Date: Thu Feb 10 07:19:01 2011
New Revision: 14699
Modified:
dbd-oracle/trunk/Oracle.pm
Log:
Fixing some typos on the pod
Modified: dbd-oracle/trunk/Oracle.pm
==============================================================================
--- dbd-oracle/trunk/Oracle.pm (original)
+++ dbd-oracle/trunk/Oracle.pm Thu Feb 10 07:19:01 2011
@@ -1682,9 +1682,8 @@
my $dbh = DBI->connect($dsn, $user, $passwd, { ora_module_name => $0 });
- $dbh{ora_module_name} = $y;
-
-
+ $dbh{ora_module_name} = $y;
+
=item ora_driver_name
For 11g and later you can now set the name of the driver layer using OCI.
@@ -1698,10 +1697,10 @@
my $dbh = DBI->connect($dsn, $user, $passwd, { ora_driver_name => 'ModPerl_1' });
$dbh{ora_driver_name} = $q;
-
+
=item ora_client_info
-When passed in on the connection attribues it can specify any info you want
+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
retrieved on the server side using V$SESSION view.
@@ -1711,8 +1710,8 @@
=item ora_client_identifier
-When passed in on the connection attribues it specifies the user identifier
-in the session handle. Most useful for web app as it can pass in the seesion
+When passed in on the connection attributes it specifies the user identifier
+in the session handle. Most useful for web app as it can pass in the session
user name which might be different than the connection user name. Can be up
to 64 bytes long do not to include the password for security reasons and the
first character of the identifier should not be ':'. This value can be
@@ -2304,7 +2303,7 @@
Oracle returns it.
See L</table_info()> for more detailed information.
-It is possiable with Oracle to make the names of the various DB objects (table,column,index etc)
+It is possible with Oracle to make the names of the various DB objects (table,column,index etc)
case sensitive.
alter table bloggind add ("Bla_BLA" NUMBER)
@@ -3331,7 +3330,7 @@
$sth->finish();
When using scrollable cursors it is required that you use the $sth->finish() method when you are done with the cursor as this type of
-cursor has to be explicitly canceled on the server. If you do not do this you may cause resource problems on your database.
+cursor has to be explicitly cancelled on the server. If you do not do this you may cause resource problems on your database.
=back