ovrimos_fetch_row
ovrimos_fetch_row — 結果セットからレコードを取得する
説明
bool ovrimos_fetch_row ( int result_id [, int how [, int row_number]] )ovrimos_fetch_row() は、結果セットから レコードを取得します。カラムの値は、別の関数により取得する必要が あります。成功した場合に TRUE を、失敗した場合に FALSE を返します。
例 1591. レコードを取得する例
<?php
$conn = ovrimos_connect("remote.host", "8001", "admin", "password");
if ($conn != 0) {
echo "Connection ok!";
$res=ovrimos_exec($conn, "select table_id, table_name from sys.tables");
if ($res != 0) {
echo "Statement ok!";
if (ovrimos_fetch_row($res, "First")) {
$table_id = ovrimos_result($res, 1);
$table_name = ovrimos_result($res, 2);
echo "table_id=" . $table_id . ", table_name=" . $table_name . "\n";
if (ovrimos_fetch_row($res, "Next")) {
$table_id = ovrimos_result($res, "table_id");
$table_name = ovrimos_result($res, "table_name");
echo "table_id=" . $table_id . ", table_name=" . $table_name . "\n";
} else {
echo "Next: error\n";
}
} else {
echo "First: error\n";
}
ovrimos_free_result($res);
}
ovrimos_close($conn);
}
?>
この例は、レコードを 1 件取得し、結果を出力します。
- ovrimos_fetch_rowのページへのリンク