Ingres İşlevleri
PHP Manual

ingres_cursor

(PECL ingres >= 1.1.0)

ingres_cursor — Get a cursor name for a given result resource

Açıklama

string ingres_cursor ( resource $result )

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

Değiştirgeler

result

The query result identifier

Dönen Değerler

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

Örnekler

Örnek 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;

?>

Ayrıca Bakınız


Ingres İşlevleri
PHP Manual