sqlsrv_has_rows
Indica se il set di risultati include una o più righe.
Sintassi
sqlsrv_has_rows( resource $stmt )
Parametri
$stmt: l'istruzione eseguita.
Valore restituito
Se nel set di risultati sono presenti righe, il valore restituito sarà true. Se non sono presenti righe o se la chiamata di funzione non riesce, il valore restituito sarà false.
Esempio
<?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";
}
?>