andi            Mon Nov 22 16:46:49 2004 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src/ext/oci8   oci8.c 
  Log:
  - Don't use that ZTS connection pooling code until decided what to do with
  - this problem.
  
  
http://cvs.php.net/diff.php/php-src/ext/oci8/oci8.c?r1=1.257.2.4&r2=1.257.2.5&ty=u
Index: php-src/ext/oci8/oci8.c
diff -u php-src/ext/oci8/oci8.c:1.257.2.4 php-src/ext/oci8/oci8.c:1.257.2.5
--- php-src/ext/oci8/oci8.c:1.257.2.4   Sat Oct 23 05:34:17 2004
+++ php-src/ext/oci8/oci8.c     Mon Nov 22 16:46:49 2004
@@ -22,7 +22,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: oci8.c,v 1.257.2.4 2004/10/23 09:34:17 tony2001 Exp $ */
+/* $Id: oci8.c,v 1.257.2.5 2004/11/22 21:46:49 andi Exp $ */
 
 /* TODO list:
  *
@@ -786,7 +786,7 @@
 
        php_info_print_table_start();
        php_info_print_table_row(2, "OCI8 Support", "enabled");
-       php_info_print_table_row(2, "Revision", "$Revision: 1.257.2.4 $");
+       php_info_print_table_row(2, "Revision", "$Revision: 1.257.2.5 $");
 
        sprintf(buf, "%ld", num_persistent);
        php_info_print_table_row(2, "Active Persistent Links", buf);
@@ -5841,7 +5841,7 @@
    Connect to an Oracle database and log on. Returns a new session. */
 PHP_FUNCTION(oci_connect)
 {
-       oci_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0, 0);
+       oci_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0, 1);
 }
 /* }}} */
 

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

Reply via email to