php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #25097 SAPDB ODBC Connection in SQLMode=Oracle always results in no "rows"
Submitted: 2003-08-15 08:17 UTC Modified: 2003-08-20 23:59 UTC
From: huenerbe at dli-11 dot vcsystem dot com Assigned:
Status: No Feedback Package: ODBC related
PHP Version: 4.3.2 OS: Linux 2.4.x
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 — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
49 - 47 = ?
Subscribe to this entry?

 
 [2003-08-15 08:17 UTC] huenerbe at dli-11 dot vcsystem dot com
Description:
------------
All result-sets querying a SAPDB (via ODBC SQLMode=ORACLE) end up in "no rows" returned. These results contain the correct table-headers but no data. Switching to SQLMode=INTERNAL returns correct data. This seems to be a PHP related problem as I tried the php internal odbc manager and iODBC. SQLMode is working fine in other tools such as SAPDB SQL-Studio & connection via jdbc.

I was able to reproduce this problem on PHP versions 4.3.2 & 5.0.0b1. 

Reproduce code:
---------------
.odbc.ini
---

[cldb01]
Driver          = /public/project/sapdb/indep_prog/lib/libsqlod.so
Description     = SAPDB cldb01
DSN             = cldb01
Servername      = localhost
ServerDB        = cldb01
SQLMode         = oracle

odbctest.php
---

<?
 $con = odbc_connect("cldb01","dba","dba");
 $res = odbc_do($con,"SELECT * FROM users");
 odbc_result_all($res);
?>

Expected result:
----------------
I expect to see a list of all users in my database, like this:

OWNER GROUPNAME USERNAME USERMODE CONNECTMODE MAXTIMEOUT COSTWARNING COSTLIMIT DEFAULTCODE CREATEDATE CREATETIME ALTERDATE ALTERTIME PWCREADATE PWCREATIME SERVERDB SERVERNODE USER_ID COMMENT 
DBA  DBA SYSDBA         DEFAULT 2003-08-15 14:32:56 2003-08-15 14:32:56     CLDB01 andrea 10   
DBA  HUENERBE RESOURCE MULTIPLE       DEFAULT 2003-08-15 14:43:59 2003-08-15 14:43:59 2003-08-15 14:43:59 CLDB01 andrea 13   
DBA  DBM ADMIN         DEFAULT 2003-08-15 14:32:56 2003-08-15 14:32:56     CLDB01 andrea 0   


Actual result:
--------------
<h2>No rows found</h2>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-08-15 10:44 UTC] kalowsky@php.net
Further more, I have no idea what SQLMode does so I haven't a clue how to debug this.

I'm going to assume that this isn't a PHP bug, as it works for fine for myself and others, but rather a quark in how SAPDB handles things.  

If you could turn on logging that would also help.
 [2003-08-20 23:59 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.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 00:01:28 2024 UTC