php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #23819 odbc_fetch_array() - Problem
Submitted: 2003-05-26 16:56 UTC Modified: 2003-06-02 17:28 UTC
Votes:3
Avg. Score:5.0 ± 0.0
Reproduced:3 of 3 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: rony at inf dot ufsc dot br Assigned:
Status: No Feedback Package: ODBC related
PHP Version: 4.3.1 OS: Windows 98
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: rony at inf dot ufsc dot br
New email:
PHP Version: OS:

 

 [2003-05-26 16:56 UTC] rony at inf dot ufsc dot br
<?
  $conn = odbc_connect("Driver={Microsoft Access Driver (*.mdb)};DBQ=C:/teste.mdb", "", "");
  if ($conn) {
    $sql = "SELECT * FROM Cliente";
    $res = odbc_exec($conn, $sql);
    if ($res){
      while ($valor = odbc_fetch_array($res)) {
        echo $valor["Nome"] ." - ";
        echo "". $valor["ID"];
      }
    }
    odbc_close($conn);
  } else {
    echo "". mysql_error();
  }
?>

Send fatal error:
Fatal error: Call to undefined function: odbc_fetch_array() in c:\arquivos de programas\apache group\apache\htdocs\access\conexao.php on line 9

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-06-02 17:28 UTC] sniper@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 [2008-12-18 01:07 UTC] gouldee at paulbunyan dot net
I have the same problem, except I am running on linux Suse11.

I can run this code from the command line with no error showing
that PHP5 has the odbc Calls.  But, for some reason Apache
when running PHP as a module libphp5.so it doesn't work, and 
none of the odbc php functions work. But, as I said the same
code works fine from the linux prompt.

 PHP Fatal error:  Call to undefined function odbc_fetch_array()
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 21:01:31 2024 UTC