首頁 >後端開發 >php教程 >NT IIS下用ODBC連接資料庫_PHP教程

NT IIS下用ODBC連接資料庫_PHP教程

WBOY
WBOY原創
2016-07-21 16:03:221066瀏覽

$connection = int odbc_connect(string dsn, string user, string password)建立資料庫連接,

$query_string = "查詢記錄的條件"
如:$query_string = "select * from table"

用$cur = int odbc_exec(int connection_id, string query_string)檢索資料庫,將記錄集放入$cur變數中。

再用while (odbc_fetch_row($cur)){
$var1=odbc_result($cur,1);
$var2=odbc_result($cur,1);
.. .
}
讀取odbc_exec()傳回的資料集$cur。

最後是odbc_close(int connection_id)關閉資料庫的連線。

odbc_result()函數是取目前記錄的指定欄位值。  

  

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/316264.htmlTechArticle$connection = int odbc_connect(string dsn, string user, string password)建立資料庫連接,passqueryd的條件如:$query_string = select * from table 用$...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn