php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #8407 set rowcount n will return no result
Submitted: 2000-12-24 12:20 UTC Modified: 2001-01-04 12:02 UTC
From: steeven at kali dot com dot cn Assigned:
Status: Closed Package: MSSQL related
PHP Version: 4.0.4 OS: windowsme+sql2000
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: steeven at kali dot com dot cn
New email:
PHP Version: OS:

 

 [2000-12-24 12:20 UTC] steeven at kali dot com dot cn
$q="
set rowcount 5
select * from tbl
set rowcount 0
";
$r= mssql_query($q);

$r will be empty!

$q="select TOP 5 * from tbl ";
this will work.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-01-04 12:02 UTC] fmk@php.net
You will need to execute this in three statements. You are sending tree statements and the last does not return any data so the result will be empty.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri May 10 22:01:32 2024 UTC