(No version information available, might only be in Git)
sqlsrv_has_rows — Indicates whether the specified statement has rows
sqlsrv_has_rows ( resource $stmt ) : bool
Indicates whether the specified statement has rows.
stmt
A statement resource returned by sqlsrv_query() or sqlsrv_execute().
Returns true
if the specified statement has rows and false
if the statement does not have rows or if an error occurred.
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 />"; } ?>
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.sqlsrv-has-rows.php