略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ingres_cursor

2024-05-07

ingres_cursor

(PECL ingres >= 1.1.0)

ingres_cursorGet a cursor name for a given result resource

说明

ingres_cursor ( resource $result ) : string

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

参数

result

The query result identifier

返回值

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

范例

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;

?>

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.ingres-cursor.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3