Ingres Funzioni
PHP Manual

ingres_free_result

(PECL ingres >= 2.0.0)

ingres_free_resultFree the resources associated with a result identifier

Descrizione

bool ingres_free_result ( resource $result )

Elenco dei parametri

result

The query result identifier

Valori restituiti

Restituisce TRUE in caso di successo, FALSE in caso di fallimento.

Esempi

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)

?>

Vedere anche:


Ingres Funzioni
PHP Manual