ingres_free_result
(PECL ingres >= 2.0.0)
ingres_free_result — Free the resources associated with a result identifier
설명
bool ingres_free_result
( resource $result
)
인수
- result
-
The query result identifier
반환값
성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.
예제
Example #1 Free a result resource
<?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)
?>
There are no user contributed notes for this page.
