ovrimos_fetch_row

(PHP 4 = 4.0.3)

ovrimos_fetch_row -- 結果からレコードを取得する

説明

boolean ovrimos_fetch_row ( int result_id, int [how] , int [row_number] )

ovrimos_fetch_row() は結果からレコードを取得す るために使用されます。

ovrimos_fetch_row() は結果からレコードを取得し ます。カラムの値は、別の関数により取得する必要があります。 TRUE または FALSE を返します。

例 1レコードを取得する例

 ?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件取得し、結果を出力します。