函式名: db2_free_result()
適用版本: PHP 4, PHP 5, PHP 7
說明: db2_free_result() 函式用於釋放 db2_execute() 函式執行的結果集。
用法: bool db2_free_result ( resource $stmt )
引數:
- stmt: 必需。結果集資源識別符號
返回值:
- 如果成功釋放結果集,則返回 TRUE。
- 如果出現錯誤,則返回 FALSE。
示例:
"; } // 釋放結果集 db2_free_result($stmt); // 關閉資料庫連線 db2_close($conn); ?>在上面的例子中,首先我們連線到 DB2 資料庫。然後,我們準備並執行一個 SQL 查詢,使用 db2_prepare() 和 db2_execute() 函式。之後,我們使用 db2_fetch_assoc() 函式從結果集中獲取每行資料,並輸出姓名和年齡。最後,我們使用 db2_free_result() 函式釋放結果集,並使用 db2_close() 函式關閉資料庫連線。