php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #1930 db_oracle.inc does not return Errno and Error from query method
Submitted: 1999-07-30 12:00 UTC Modified: 2002-06-16 08:35 UTC
From: adamzg at keiler dot com Assigned:
Status: Not a bug Package: Oracle related
PHP Version: 3.0.9 OS: Unix/appache
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
15 + 28 = ?
Subscribe to this entry?

 
 [1999-07-30 12:00 UTC] adamzg at keiler dot com
Fix:

  function query($Query_String) {
      $this->connect();
      
      $this->Query_ID= ora_open($this->Link_ID);
      if(!ora_parse($this->Query_ID,$Query_String)) {
	  	$this->Errno=ora_errorcode($this->Query_ID);
	  	$this->Error=ora_error($this->Query_ID);
      } else {
        /*  THIS IS THE FIX!! */
        if(ora_exec($this->Query_ID)) {
	        $this->Errno=ora_errorcode($this->Query_ID);
	        $this->Error=ora_error($this->Query_ID);
        }
        /* END OF FIX!! */
      }
      $this->Errno=ora_errorcode($this->Query_ID);
	    $this->Error=ora_error($this->Query_ID);
      $this->Row=0;

      if($this->Debug) {
	  printf("Debug: query = %s<br>\n", $Query_String);
	  printf("<br>Debug: Query_ID: %d<br>\n", $this->Query_ID);
      }
      
      if(!$this->Query_ID) {
	  $this->halt("Invalid SQL: ".$Query_String);
      }
      
      return $this->Query_ID;
  }

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-16 08:35 UTC] sander@php.net
Thank you for taking the time to report a problem with PHP.
Unfortunately, PHP 3 is no longer supported. Please download
the latest version of PHP 4 from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to "Open".
Again, thank you for your continued support of PHP.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 05:01:29 2024 UTC