[svn:dbd-oracle] r14657 - dbd-oracle/trunk
[email protected] Thu, 27 Jan 2011 08:22:15 -0800 (PST)
| Newsgroups | perl.dbd.oracle.changes |
|---|---|
| Message-ID | <[email protected]> |
Author: byterock
Date: Thu Jan 27 08:22:15 2011
New Revision: 14657
Modified:
dbd-oracle/trunk/Changes
dbd-oracle/trunk/Oracle.pm
Log:
Add missing ora_drcp* values to dbh private_attribute_info by Martin J. Evans
Removed a load of attributes from sth private_attribute_info which are not handle attributes but attributes to bind_param/prepare by Martin J. Evans
Modified: dbd-oracle/trunk/Changes
==============================================================================
--- dbd-oracle/trunk/Changes (original)
+++ dbd-oracle/trunk/Changes Thu Jan 27 08:22:15 2011
@@ -1,5 +1,7 @@
=head1 Changes in DBD-Oracle 1.28 (svn rev 14583)
+ Add missing ora_drcp* values to dbh private_attribute_info by Martin J. Evans
+ Removed a load of attributes from sth private_attribute_info which are not handle attributes but attributes to bind_param/prepare by Martin J. Evans
Fix for rt 64244 - don't bail out, skip tests we cannot connect by Martin J. Evans and John Scoles
Added DBI to PREREQ_PM in Makefile.PL by Martin J. Evans
Added build_requires in Makefile.PL by Martin J. Evans
Modified: dbd-oracle/trunk/Oracle.pm
==============================================================================
--- dbd-oracle/trunk/Oracle.pm (original)
+++ dbd-oracle/trunk/Oracle.pm Thu Jan 27 08:22:15 2011
@@ -363,13 +363,20 @@
ora_svchp => undef,
ora_errhp => undef,
ora_init_mode => undef,
- ora_charset => undef,
+ ora_charset => undef,
ora_ncharset => undef,
ora_session_mode => undef,
ora_verbose => undef,
ora_oci_success_warn => undef,
ora_objects => undef,
ora_ncs_buff_mtpl => undef,
+ ora_drcp => undef,
+ ora_drcp_class => undef,
+ ora_drcp_min => undef,
+ ora_drcp_max => undef,
+ ora_drcp_incr => undef,
+ ora_oratab_orahome => undef,
+ ora_module_name => undef,
};
}
@@ -1046,19 +1053,8 @@
ora_rowid => undef,
ora_est_row_width => undef,
ora_type => undef,
- ora_field => undef,
- ora_csform => undef,
- ora_maxdata_size => undef,
- ora_parse_lang => undef,
- ora_placeholders => undef,
- ora_auto_lob => undef,
- ora_check_sql => undef,
- ora_row_cache_off => undef,
- ora_prefetch_rows => undef,
- ora_prefetch_memory => undef,
- };
+ };
}
-
}
1;
@@ -1824,7 +1820,7 @@
sets the number of rows to buffer at a time (default value is 1000).
The C<execute_for_fetch> function will collect (at most) this many
-rows in an array, send them of to the DB for execution, then go back
+rows in an array, send them off to the DB for execution, then go back
to collect the next chunk of rows and so on. This attribute can be
used to limit or extend the number of rows processed at a time.
@@ -2215,7 +2211,7 @@
Oracle returns it.
See L</table_info()> for more detailed information.
-It is possible with Oracle to make the names of the various DB objects (table,column,index etc)
+It is possiable with Oracle to make the names of the various DB objects (table,column,index etc)
case sensitive.
alter table bloggind add ("Bla_BLA" NUMBER)