[PHP-DEV] Bug #8086 Updated: query link identifiers are not usable From: fmk <email protected>
Date: 06/30/01

ID: 8086
Updated by: fmk
Reported By: jcelle <email protected>
Old-Status: Open
Status: Closed
Bug Type: MSSQL related
Operating system:
PHP Version: 4.0.3pl1
Assigned To:
Comments:

Update to latest version. All link identifiers has been changed from integers to resources.

Previous Comments:
---------------------------------------------------------------------------

[2000-12-03 10:13:26] jcelle <email protected>

This report uses php 4.04 and the php_mssql70.dll extension on windows nt 4.
There seem to be a problem with the functions that accept a mssql_query() link identifier as parameter.

I have the followin basic script :

$hdb = mssql_connect( "testserver", "test", "testpwd" );
print( "hdb = $hdb<br>" );
print( "mssql_select_db : ".mssql_select_db( "test_db", $hdb )."<br>" );
$hcur = mssql_query( "select * from t_test", $hdb );
print( "hcur = $hcur<br>" );
print( "mssql_num_fields : ".mssql_num_fields( $hcur )."<br>" );
print( "mssql_num_rows : ".mssql_num_rows( $hcur )."<br>" );

which produces the following output :

hdb = Resource id #1
mssql_select_db : 1
hcur = 1
Warning: Supplied argument is not a valid MS SQL-result resource in c:phpdefault.php4 on line 17
mssql_num_fields :
Warning: Supplied argument is not a valid MS SQL-result resource in c:phpdefault.php4 on line 18
mssql_num_rows :

---------------------------------------------------------------------------

ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=8086&edit=2

-- 
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>