From:             matthew dot berry at wolseley dot co dot uk
Operating system: Unix
PHP version:      5.1.6
PHP Bug Type:     ODBC related
Bug description:  ODBC works through command line but not Apache

Description:
------------
We are using Unix, Apache version 2.0.54 and PHP 5.1.2 to connect to a
database (Northgate Reality) using the Unix ODBC protocol and the
Northgate Unix driver.

When we run the SQL statement shown below through ISQL on the web server,
the expected results are returned.

When we run the PHP page directly on the command line using the PHP
parser, we get the html generated correctly.

When going through Apache we get the following error:

Warning: odbc_do() [function.odbc-do]: SQL error: [Northgate][SNI]
Transport Error : Receive Failure, SQL state 08S01 in SQLExecDirect in
/sites/intranet/wuk/TermsReview/connecttest3.php on line 62

Which is a generic error message.

Part of the code used is shown below:


Reproduce code:
---------------
        $rfp = odbc_connect($rdsn,$ruser,$rpwd);
        if($rfp){
           echo "Connected to ".$rdsn."<br>";
           $select = "SELECT ACCOUNT_NO, CUSTOMER_NAME FROM
GLOBAL_CUSTOMER_DETAILS WHERE ACCOUNT_NO = '7459C30'";
           echo $select."<br>";
           $result = ODBC_DO($rfp,$select);
        
etc etc

Expected result:
----------------
The message is produced when it hits the ODBC_DO statement, the connection
to the database succeeds and has been traced.

I have tried several things such as using a persistant connection, using
odbc_prepare before it (which also fails).

When I include phpinfo at the end it shows that there is an active odbc
connection.

I realise that his could be a driver issue (although tracing has shown
otherwise thus far). But the fact that running the exact same page from
the command line works but doesn't through Apache means something ain't
quite right.



-- 
Edit bug report at http://bugs.php.net/?id=38923&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=38923&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=38923&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=38923&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=38923&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=38923&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=38923&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=38923&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=38923&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=38923&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=38923&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=38923&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=38923&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=38923&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=38923&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=38923&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=38923&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=38923&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=38923&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=38923&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=38923&r=mysqlcfg

Reply via email to