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
Last updated: Fri, 14 Aug 2009

view this page in

ingres_free_result

(PECL ingres >= 2.0.0)

ingres_free_resultLibère les ressources d'un résultat Ingres

Description

bool ingres_free_result ( resource $result )

ingres_free_result() libère les ressources du résultat Ingres result .

Liste de paramètres

result

La ressource de résultat Ingres

Valeurs de retour

Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.

Exemples

Exemple #1 Libération d'un résultat Ingres

<?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)

?>

Voir aussi



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

ingres_next_error> <ingres_field_type
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites