sqlsrv_has_rows

Microsoft Drivers for PHP for SQL Server

Collapse image Expand Image Copy image CopyHover image

Indicates if the result set has one or more rows.

Syntax

sqlsrv_has_rows( resource $stmt )

Parameters

$stmt: The executed statement.

Return Value

If there are rows in the result set, the return value will be true. If there are no rows, or if the function call fails, the return value will be false.

Example

  Copy imageCopy Code
<?php
   $server = "server_name";
   $conn = sqlsrv_connect( $server, array( 'Database' => 'Northwind' ) );

   $stmt = sqlsrv_query( $conn, "select * from orders where CustomerID = 'VINET'" , array());

   if ($stmt !== NULL) {
      $rows = sqlsrv_has_rows( $stmt );
   
      if ($rows === true)
         echo "\nthere are rows\n";
      else 
         echo "\nno rows\n";
   }
?>

See Also

Other Resources