odbc_free_result()函數(shù)與結(jié)果關(guān)聯(lián)的可用空閑資源
bool odbc_free_result ( resource $result_id )
與結(jié)果關(guān)聯(lián)的空閑資源。
只有當(dāng)您擔(dān)心在腳本運(yùn)行時(shí)使用太多內(nèi)存時(shí),才需要調(diào)用odbc_free_result()。 當(dāng)腳本完成時(shí),所有結(jié)果內(nèi)存將自動(dòng)釋放。
它總是返回true
序號(hào) | 參數(shù)和說(shuō)明 |
---|---|
1 | result_id 結(jié)果標(biāo)識(shí)符 |
試試下面的實(shí)例
<?php $input_ID = odbc_connect("DSN","user_id","pass_id"); $result = odbc_exec($input_ID,"SELECT * FROM Products ORDER BY ProductName"); odbc_free_result($result); ?>