Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16415 программистов и 1796 роботов. Сейчас ищут 2019 программистов ...
sqlsrv_has_rows - Indicates whether the specified statement has rows
Вернуться к: SQLSRV Функции
sqlsrv_has_rows
(Информация о версии неизвестна, возможно, только в SVN)
sqlsrv_has_rows — Indicates whether the specified statement has rows
Описание
bool sqlsrv_has_rows
( resource
$stmt
)Indicates whether the specified statement has rows.
Возвращаемые значения
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 />";
}
?>
Смотрите также
- sqlsrv_num_rows() - Retrieves the number of rows in a result set
- sqlsrv_query() - Prepares and executes a query.
Вернуться к: SQLSRV Функции