sqlsrv_has_rows
Indica si el conjunto de resultados tiene una o varias filas.
Sintaxis
sqlsrv_has_rows( resource $stmt )
Parámetros
$stmt: la instrucción ejecutada.
Valor devuelto
Si hay filas en el conjunto de resultados, se devolverá el valor True. Si no hay ninguna fila, o si se produce un error en la llamada de función, se devolverá el valor False.
Ejemplo
<?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";
}
?>