Query: ingres_cursor
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
INGRES_CURSOR(3) 1 INGRES_CURSOR(3) ingres_cursor - Get a cursor name for a given result resourceSYNOPSISstring ingres_cursor (resource $result)DESCRIPTIONReturns a string with the active cursor name. If no cursor is active then NULL is returned.PARAMETERSo $result - The query result identifierRETURN VALUESReturns a string containing the active cursor name. If no cursor is active then NULL is returned.EXAMPLESExample #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 ALSOingres_prepare(3), ingres_execute(3). PHP Documentation Group INGRES_CURSOR(3)