Funkcje Ingres
PHP Manual

ingres_cursor

(PECL ingres >= 1.1.0)

ingres_cursor — Get a cursor name for a given result resource

Opis

string ingres_cursor ( resource $result )

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

Parametry

result

The query result identifier

Zwracane wartości

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

Przykłady

Przykład #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;

?>

Zobacz też:


Funkcje Ingres
PHP Manual