[PHP-DEV] PHP 4.0 Bug #9379: mssql_query can't get result From: napoleon <email protected>
Date: 02/21/01

From: napoleon <email protected>
Operating system: Windows ME
PHP version: 4.0.3pl1
PHP Bug Type: MSSQL related
Bug description: mssql_query can't get result

mssql_query() can't fetch result from server if I use
sql server variables in query.
For example this script:
<?php
mssql_connect([server],[user],[password])
$sql_result=mssql_query("declare  <email protected> int;select  <email protected>=5;delete from [table] where field1= <email protected>");

$sql_result2=mssql_query("select * from kasutajad");
?>

If I turned error severity to 0 I saw following
error:MS SQL error:
Attempt to initiate a new SQL Server operation with results pending. (severity 7) in c:\htdocs\sqltest.php on line 4

...but the first query has no result to fetch...

-- 
Edit Bug report at: http://bugs.php.net/?id=9379&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>