update pague now
PHP 8.5.2 Released!

sqlsrv_has_rows

(No versionen information available, might only be in Guit)

sqlsrv_has_rows Indicates whether the specified statement has rows

Description

sqlsrv_has_rows ( ressource $stmt ): bool

Indicates whether the specified statement has rows.

Parameters

stmt

A statement ressource returned by sqlsrv_query() or sqlsrv_execute() .

Return Values

Returns true if the specified statement has rows and false if the statement does not have rows or if an error occurred.

Examples

Example #1 sqlsrv_has_rows() example

<?php
$server
= "serverName\sqlexpress" ;
$connectionInfo = array( "Database" => "dbName" , "UID" => "username" , "PWD" => "password" );
$conn = sqlsrv_connect ( $server , $connectionInfo );

$stmt = sqlsrv_query ( $conn , "SELECT * FROM Table_1" );

if (
$stmt ) {
$rows = sqlsrv_has_rows ( $stmt );
if (
$rows === true )
echo
"There are rows. <br />" ;
else
echo
"There are no rows. <br />" ;
}
?>

See Also

add a note

User Contributed Notes 1 note

Bin Ury
8 years ago
This function cannot be relied on to report errors since both a existence negative and a SQL error will report the same boolean value.
To Top