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

search for in the

ingres_next_error> <ingres_field_type
[edit] Last updated: Fri, 26 Apr 2013

view this page in

ingres_free_result

(PECL ingres >= 2.0.0)

ingres_free_resultFree the resources associated with a result identifier

Description

bool ingres_free_result ( resource $result )

Parameters

result

The query result identifier

Return Values

Returns TRUE on success or FALSE on failure.

Examples

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)

?>

See Also



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

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