dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ingres_errno> <ingres_connect
[edit] Last updated: Fri, 28 Jun 2013

view this page in

ingres_cursor

(PECL ingres >= 1.1.0)

ingres_cursorGet a cursor name for a given result resource

Description

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

Return Values

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

Examples

Example #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;

?>

See Also



add a note add a note User Contributed Notes ingres_cursor - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites