PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

sqlsrv_has_rows - Indicates whether the specified statement has rows | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

sqlsrv_has_rows

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

sqlsrv_has_rowsIndicates whether the specified statement has rows

説明

bool sqlsrv_has_rows ( resource $stmt )

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

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「sqlsrv_has_rows - Indicates whether the specified statement has rows」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | sqlsrv_has_rows - Indicates whether the specified statement has rows」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: