php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #36403 oci_execute() no longer supports OCI_DESCRIBE_ONLY
Submitted: 2006-02-15 19:01 UTC Modified: 2006-02-15 21:49 UTC
Votes:3
Avg. Score:5.0 ± 0.0
Reproduced:3 of 3 (100.0%)
Same Version:1 (33.3%)
Same OS:1 (33.3%)
From: johnw at sussex dot ac dot uk Assigned:
Status: Closed Package: OCI8 related
PHP Version: 5.1.2 OS: solaris 9
Private report: No CVE-ID: None
 [2006-02-15 19:01 UTC] johnw at sussex dot ac dot uk
Description:
------------
Supplying the constant OCI_DESCRIBE_ONLY as the second 
argument (mode) to oci_execute() results in a warning,
and oci_execute() returning false.

Reproduce code:
---------------
The bug is caused by these lines of code in
  php-5.1.2/ext/oci8/oci_statement.c
at line 1351 in the definition of
  php_oci_statement_execute():


   switch (mode) {
     case OCI_COMMIT_ON_SUCCESS:
     case OCI_DEFAULT:
       /* only these two are allowed */
       break;
     default:
       php_error_docref(NULL TSRMLS_CC, E_WARNING,  
            "Invalid execute mode given: %d", mode);
       return 1;
       break;
   }


Expected result:
----------------
I would expect oci_execute() to pass the mode 
OCI_DESCRIBE_ONLY on to the underlying OCI8 call.

I think it is very bad that this non- backward-
compatible change has been made without being documented 
or announced anywhere. I am responsible for an 
application that is used by several thousands of users 
daily that relies on OCI_DESCRIBE_ONLY working.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-02-15 21:49 UTC] tony2001@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 07:01:29 2024 UTC