ingres_cursor

(PECL ingres >= 1.1.0)
Get a cursor name for a given result resource
string ingres_cursor ( resource $result )

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

Parameters:
result

The query result identifier

Returns:

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

Examples:
Get cursor name for a query resource
1
2
3
4
5
6
7
8
9
10
<?php
$link = ingres_connect($database$user$password);
 
$result = ingres_prepare($link"select * from table");
 
$cursor_name = ingres_cursor($result);
 
echo $cursor_name;
 
?>
See also:

ingres_prepare() -

ingres_execute() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.