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, 24 May 2013

view this page in

ingres_free_result

(PECL ingres >= 2.0.0)

ingres_free_resultLibera los recursos asociados a un identificador de resultados

Descripción

bool ingres_free_result ( resource $result )

Parámetros

result

El identificador de resultados de la consulta

Valores devueltos

Devuelve TRUE en caso de éxito o FALSE en caso de error.

Ejemplos

Ejemplo #1 Liberar un recurso de resultados

<?php
$enlace 
ingres_connect($base_datos$usuario$contraseña);

$resultado ingres_query($enlace,"select * from table");

while (
$fila ingres_fetch_row($resultado)) {
    echo 
$fila[1];
    echo 
$fila[2];
}
ingres_free_result($resultado);

ingres_close($enlace)

?>

Ver también



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 | sitemap | contact | advertising | mirror sites