ora_fetch_into

ora_fetch_into,計算機程式語言函式,功能是將一行數據放入數組。

ora_fetch_into

(PHP 3, PHP 4 )
ora_fetch_into -- 將一行數據放入數組

描述

int ora_fetch_into ( resource cursor, array result [, int flags])
取得一行數據並將它放入到一個數組中。參數 flags 有兩個標誌值:如果設定 ORA_FETCHINTO_NULLS 標誌,值為 NULL 的列設定在數組中;如果設定 ORA_FETCHINTO_ASSOC 標誌,將創建一個元素由資料庫欄位命名的數組。
返回所取得行的列數。

ora_fetch_into()例子

<?php
$results = array();
ora_fetch_into($cursor, $results);
echo $results&#91;0&#93;;
echo $results&#91;1&#93;;
$results = array();
ora_fetch_into($cursor, $results, ORA_FETCHINTO_NULLS|ORA_FETCHINTO_ASSOC);
echo $results&#91;'MyColumn'&#93;;
?>

相關詞條

熱門詞條

聯絡我們