downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ingres_next_error> <ingres_field_type
[edit] Last updated: Fri, 25 May 2012

view this page in

ingres_free_result

(PECL ingres >= 2.0.0)

ingres_free_result結果 ID に関連づけられたリソースを解放する

説明

bool ingres_free_result ( resource $result )

パラメータ

result

クエリ結果 ID。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 結果リソースの解放

<?php
$link 
ingres_connect($database$user$password);

$result ingres_query($link"select * from table");

while (
$row ingres_fetch_row($result)) {
    echo 
$row[1];
    echo 
$row[2];
}
ingres_free_result($result);

ingres_close($link)

?>

参考



add a note add a note User Contributed Notes ingres_free_result
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites