pg_result_seek
(PHP 4 >= 4.3.0, PHP 5)
pg_result_seek -- 結果リソースの内部行オフセットを設定する
説明
bool
pg_result_seek ( resource result, int offset )
pg_result_seek()は、結果リソースの行の位置を
指定された offset にセットします。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例
例 1. pg_result_seek() の例
<?php
// データベースに接続する $conn = pg_pconnect("dbname=publisher");
// クエリを実行する $result = pg_query($conn, "SELECT author, email FROM authors");
// 3 行目をシークする(結果が 3 行あると仮定する) pg_result_seek($result, 2);
// 3 行目を取得する $row = pg_fetch_row($result); ?>
|
|