php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #41453 exception while executing query
Submitted: 2007-05-21 10:30 UTC Modified: 2007-06-05 01:00 UTC
From: alkinoy at mail dot ru Assigned:
Status: No Feedback Package: MSSQL related
PHP Version: 5.2.2 OS: win2003 server sp1
Private report: No CVE-ID: None
Have you experienced this issue?
Rate the importance of this bug to you:

 [2007-05-21 10:30 UTC] alkinoy at mail dot ru
Description:
------------
when change default language for MSSQL account to Russian (old was English) i get apache exception #1960 while executing mssql query. PHP install as module, Apache 2.2

Reproduce code:
---------------
$db = mssql_connect("server",'user','pass') or die('Can not connect');

mssql_select_db('custom')

$res = mssql_query ("select * from custom_old..imp7 where id = 8569658");

$row = mssql_fetch_array($res);
echo '<pre>';
print_r($row);
echo '</pre>';


Expected result:
----------------
Array
(
    [0] => 8569658
    [id] => 8569658
    [1] => 224227
    ........
)



Actual result:
--------------
exception httpd [1960]

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-05-28 14:56 UTC] tony2001@php.net
Not enough information was provided for us to be able
to handle this bug. Please re-read the instructions at
http://bugs.php.net/how-to-report.php

If you can provide more information, feel free to add it
to this bug and change the status back to "Open".

Thank you for your interest in PHP.


"exception httpd [1960]" - no idea what that might mean.
A backtrace and a full reproduce case (including the tests schemes) would help.
 [2007-06-05 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 13:01:29 2024 UTC