array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'function.sqlsrv-has-rows.php', 1 => 'sqlsrv_has_rows', 2 => 'Indicates whether the specified statement has rows', ), 'up' => array ( 0 => 'ref.sqlsrv.php', 1 => 'SQLSRV 函数', ), 'prev' => array ( 0 => 'function.sqlsrv-get-field.php', 1 => 'sqlsrv_get_field', ), 'next' => array ( 0 => 'function.sqlsrv-next-result.php', 1 => 'sqlsrv_next_result', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/sqlsrv/functions/sqlsrv-has-rows.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

sqlsrv_has_rows

(No version information available, might only be in Git)

sqlsrv_has_rowsIndicates 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.

示例

示例 #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 />";
}
?>

参见