[svn:dbd-oracle] r15336 - dbd-oracle/trunk

[email protected] Sun, 24 Jun 2012 08:14:58 -0700 (PDT)
Newsgroups perl.dbd.oracle.changes
Message-ID <[email protected]>
Author: mjevans
Date: Sun Jun 24 08:14:58 2012
New Revision: 15336

Modified:
   dbd-oracle/trunk/Oracle.xs

Log:
RT69059 - update comment to reflect the real facts on OCIPing/AIX


Modified: dbd-oracle/trunk/Oracle.xs
==============================================================================
--- dbd-oracle/trunk/Oracle.xs	(original)
+++ dbd-oracle/trunk/Oracle.xs	Sun Jun 24 08:14:58 2012
@@ -394,7 +394,12 @@
 	/*so we should stay connected but we cannot get nay new connections*/
 	{
         /* RT 69059 - despite OCIPing being introduced in 10.2
-         * it is not available in 10.2 for AIX */
+         * it is not available in all versions of 10.2 for AIX
+         * e.g., 10.2.0.4 does not have it and 10.2.0.5 does
+         * see http://comments.gmane.org/gmane.comp.lang.perl.modules.dbi.general/16206
+         * We don't do versions to that accuracy so for AIX you have
+         * to wait until 11.2 for OCIPing.
+         */
 #if !defined(ORA_OCI_102) || (defined(_AIX) && !defined(ORA_OCI_112))
 	OCIServerVersion_log_stat(imp_dbh, imp_dbh->svchp,imp_dbh->errhp,buf,2,OCI_HTYPE_SVCCTX,status);
 #else