Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16696 программистов и 1647 роботов. Сейчас ищет 1141 программист ...
ingres_cursor - Get a cursor name for a given result resource
Вернуться к: Ingres Функции
ingres_cursor
(PECL ingres >= 1.1.0)
ingres_cursor — 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.
Список параметров
-
result
-
The query result identifier
Возвращаемые значения
Returns a string containing the active cursor name. If no cursor is active then NULL is returned.
Примеры
Пример #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;
?>
Смотрите также
- ingres_prepare() - Prepare a query for later execution
- ingres_execute() - Execute a prepared query
Вернуться к: Ingres Функции