Unix and Linux Discussions Tagged with row |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
7,007 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
7,540 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,350 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,329 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,052 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,577 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,843 |
Shell Programming and Scripting |
|
|
|
8 |
4,392 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
1,330 |
Shell Programming and Scripting |
|
|
|
8 |
3,264 |
Shell Programming and Scripting |
|
|
|
6 |
2,213 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,533 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
6,783 |
Shell Programming and Scripting |
|
|
|
3 |
2,543 |
Shell Programming and Scripting |
|
|
|
7 |
5,376 |
Shell Programming and Scripting |
|
|
|
3 |
1,891 |
Shell Programming and Scripting |
|
|
|
8 |
4,344 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
6,651 |
Web Development |
|
|
|
10 |
10,031 |
Shell Programming and Scripting |
|
|
|
2 |
16,286 |
Shell Programming and Scripting |
|
|
|
4 |
4,344 |
Shell Programming and Scripting |
|
|
|
24 |
8,175 |
Shell Programming and Scripting |
|
|
|
4 |
1,581 |
Shell Programming and Scripting |
|
|
|
8 |
3,935 |
Shell Programming and Scripting |
|
|
|
5 |
19,577 |
Shell Programming and Scripting |
|
|
|
1 |
1,843 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
14,069 |
Shell Programming and Scripting |
|
|
|
7 |
3,781 |
Shell Programming and Scripting |
|
|
|
6 |
21,310 |
Shell Programming and Scripting |
|
|
|
0 |
2,742 |
Oracle Updates (RSS) |
|
|
|
0 |
2,589 |
Oracle Updates (RSS) |
|
|
|
7 |
12,329 |
Shell Programming and Scripting |
|
|
|
4 |
3,240 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,803 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
8,357 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,713 |
Programming |
|
|
|
2 |
2,401 |
UNIX for Dummies Questions & Answers |
FBSQL_DATA_SEEK(3) 1 FBSQL_DATA_SEEK(3)
fbsql_data_seek - Move internal result pointer
SYNOPSIS
bool fbsql_data_seek (resource $result, int $row_number)
DESCRIPTION
Moves the internal row pointer of the FrontBase result associated with the specified result identifier to point to the specified row num-
ber.
The next call to fbsql_fetch_row(3) would return that row.
PARAMETERS
o $
result -A result identifier returned by fbsql_query(3) or fbsql_db_query(3).
o $row_number
- The row number. Starts at 0.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1
fbsql_data_seek(3) example
<?php
$link = fbsql_pconnect("localhost", "_SYSTEM", "secret")
or die("Could not connect");
fbsql_select_db("samp_db")
or die("Could not select database");
$query = "SELECT last_name, first_name FROM friends;";
$result = fbsql_query($query)
or die("Query failed");
// fetch rows in reverse order
for ($i = fbsql_num_rows($result) - 1; $i >=0; $i--) {
if (!fbsql_data_seek($result, $i)) {
printf("Cannot seek to row %d
", $i);
continue;
}
if (!($row = fbsql_fetch_object($result)))
continue;
echo $row->last_name . $row->first_name . "<br />
";
}
fbsql_free_result($result);
?>
PHP Documentation Group FBSQL_DATA_SEEK(3)