Unix and Linux Discussions Tagged with rows |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
6,388 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
10,354 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
10,437 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,354 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
9,586 |
Shell Programming and Scripting |
|
|
|
7 |
5,235 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,577 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,875 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,168 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,037 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,002 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,440 |
Shell Programming and Scripting |
|
|
|
5 |
2,541 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,737 |
Shell Programming and Scripting |
|
|
|
6 |
2,545 |
Shell Programming and Scripting |
|
|
|
9 |
12,170 |
Shell Programming and Scripting |
|
|
|
4 |
1,896 |
Shell Programming and Scripting |
|
|
|
8 |
2,883 |
Shell Programming and Scripting |
|
|
|
8 |
3,422 |
Shell Programming and Scripting |
|
|
|
6 |
2,383 |
Shell Programming and Scripting |
|
|
|
8 |
3,132 |
Shell Programming and Scripting |
|
|
|
2 |
3,233 |
Shell Programming and Scripting |
|
|
|
3 |
5,098 |
Shell Programming and Scripting |
|
|
|
5 |
20,581 |
Shell Programming and Scripting |
|
|
|
2 |
13,941 |
Shell Programming and Scripting |
|
|
|
6 |
3,277 |
Shell Programming and Scripting |
|
|
|
2 |
3,146 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
8,170 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
9,104 |
Shell Programming and Scripting |
|
|
|
5 |
4,593 |
Shell Programming and Scripting |
|
|
|
4 |
4,526 |
Shell Programming and Scripting |
|
|
|
6 |
5,420 |
Shell Programming and Scripting |
|
|
|
24 |
8,175 |
Shell Programming and Scripting |
|
|
|
4 |
5,684 |
Shell Programming and Scripting |
|
|
|
2 |
2,570 |
Shell Programming and Scripting |
|
|
|
6 |
11,557 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
1,930 |
Shell Programming and Scripting |
|
|
|
5 |
19,577 |
Shell Programming and Scripting |
|
|
|
1 |
2,636 |
Shell Programming and Scripting |
|
|
|
6 |
10,618 |
Shell Programming and Scripting |
SQLSRV_HAS_ROWS(3) SQLSRV_HAS_ROWS(3)
sqlsrv_has_rows - Indicates whether the specified statement has rows
SYNOPSIS
bool sqlsrv_has_rows (resource $stmt)
DESCRIPTION
Indicates whether the specified statement has rows.
PARAMETERS
o $stmt
- A statement resource returned by sqlsrv_query(3) or sqlsrv_execute(3).
RETURN VALUES
Returns TRUE if the specified statement has rows and FALSE if the statement does not have rows or if an error occurred.
EXAMPLES
Example #1
sqlsrv_has_rows(3) example
<?php
$server = "serverNamesqlexpress";
$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 />";
}
?>
SEE ALSO
sqlsrv_num_rows(3), sqlsrv_query(3).
PHP Documentation Group SQLSRV_HAS_ROWS(3)