Commit:    131dd88505d5a9588ede36b22206bf13965d9137
Author:    Christopher Jones <s...@php.net>         Thu, 18 Oct 2012 17:33:51 
-0700
Parents:   0da5517cb95e99e35b340be771af74cbe9811a5b
Branches:  PHP-5.3 PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=131dd88505d5a9588ede36b22206bf13965d9137

Log:
Fixed bug #63265 (Add ORA-00028 to the PHP_OCI_HANDLE_ERROR macro)

Improve high availability for explicitly terminated connections.

Bugs:
https://bugs.php.net/63265

Changed paths:
  M  ext/oci8/package.xml
  M  ext/oci8/php_oci8.h
  M  ext/oci8/php_oci8_int.h


Diff:
diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml
index eac3f06..9235f14 100644
--- a/ext/oci8/package.xml
+++ b/ext/oci8/package.xml
@@ -33,7 +33,7 @@ http://pear.php.net/dtd/package-2.0.xsd";>
   <active>no</active>
  </lead>
 
- <date>2011-11-18</date>
+ <date>2012-10-21</date>
  <time>12:00:00</time>
 
  <version>
@@ -47,6 +47,7 @@ http://pear.php.net/dtd/package-2.0.xsd";>
  <license uri="http://www.php.net/license";>PHP</license>
  <notes>
    Fixed bug #60901 (Improve "tail" syntax for AIX installation)
+   Fixed bug #63265 (Add ORA-00028 to the PHP_OCI_HANDLE_ERROR macro)
  </notes>
  <contents>
   <dir name="/">
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h
index 6363aea..efe8665 100644
--- a/ext/oci8/php_oci8.h
+++ b/ext/oci8/php_oci8.h
@@ -46,7 +46,7 @@
  */
 #undef PHP_OCI8_VERSION
 #endif
-#define PHP_OCI8_VERSION "1.4.7"
+#define PHP_OCI8_VERSION "1.4.8"
 
 extern zend_module_entry oci8_module_entry;
 #define phpext_oci8_ptr &oci8_module_entry
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h
index 724e8ba..b0d6516 100644
--- a/ext/oci8/php_oci8_int.h
+++ b/ext/oci8/php_oci8_int.h
@@ -289,6 +289,7 @@ typedef struct { /* php_oci_out_column {{{ */
                                zend_bailout();                                 
  \
                                break;                                          
          \
                        case    22:                                             
          \
+                       case    28:                                             
          \
                        case   378:                                             
          \
                        case   602:                                             
          \
                        case   603:                                             
          \


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to