PHP完全中文操作手冊

天地JPLOP | PHP首頁 | 函數索引
函數:odbc_fetch_row()

odbc_fetch_row

取得返回一列。

語法: int odbc_fetch_row(int result_id, int [row_number]);

返回值: 整數

函數種類: 數據庫功能

內容說明

本函數用來取得 Query 的返回資料的一列。參數 result_id 為 ODBC 返回 ID 值。參數 rownumber 可省略,為指定的取得列 (row)。

使用範例

<?php
$conn
= odbc_connect("WebDB", "", "");
$query = "select user, idno ";
$query .= "from userinfo";
$result_id = odbc_do($conn, $query);
while(
odbc_fatch_row($result_id)) {
$user = odbc_result($result_id, 1);
$idno = odbc_result($result_id, 2);
echo
$user."的身份證字號為".$idno."<br>\n";
}
odbc_close($conn);
?>



整理: 夕垌菪姬 (天地JPLOP)

[ 上一頁 回主目錄 下一頁 ]
版權所有,天地JPLOP、爵堤亞(夕垌菪姬)。網頁背景音樂和各鍊結標題
及鍊結內容和文章小說,版面編排皆歸原權利人所有對本版面
有任何意見或指教,歡迎至論壇指教。