ingres_errno> <ingres_connect
Last updated: Fri, 24 Feb 2012

ingres_cursor

(PECL ingres >= 1.1.0)

ingres_cursorGet a cursor name for a given result resource

Descrição

string ingres_cursor ( resource $result )

Returns a string with the active cursor name. If no cursor is active then NULL is returned.

Parâmetros

result

The query result identifier

Valor Retornado

Returns a string containing the active cursor name. If no cursor is active then NULL is returned.

Exemplos

Exemplo #1 Get cursor name for a query resource

<?php
$link 
ingres_connect($database$user$password);

$result ingres_prepare($link"select * from table");

$cursor_name ingres_cursor($result);

echo 
$cursor_name;

?>

Veja Também



User Contributed Notes
ingres_cursor
There are no user contributed notes for this page.

ingres_errno> <ingres_connect
Last updated: Fri, 24 Feb 2012