Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17156 программистов и 1777 роботов. Сейчас ищут 1946 программистов ...
ingres_execute - Execute a prepared query
Вернуться к: Ingres Функции
ingres_execute
(PECL ingres >= 1.1.0)
ingres_execute — Execute a prepared query
Описание
bool ingres_execute
( resource
$result
[, array $params
[, string $types
]] )Execute a query prepared using ingres_prepare().
Замечание: Related Configurations
See also the ingres.describe, ingres.scrollable and ingres.utf8 directives in Runtime Configuration.
Список параметров
-
result
-
The result query identifier
-
params
-
An array of parameter values to be used with the query
-
types
-
A string containing a sequence of types for the parameter values passed. See the types parameter in ingres_query() for the list of type codes.
Возвращаемые значения
Возвращает TRUE
в случае успешного завершения или FALSE
в случае возникновения ошибки.
Смотрите также
- ingres_unbuffered_query() - Send an unbuffered SQL query to Ingres
- ingres_fetch_array() - Fetch a row of result into an array
- ingres_fetch_assoc() - Fetch a row of result into an associative array
- ingres_fetch_object() - Fetch a row of result into an object
- ingres_fetch_row() - Fetch a row of result into an enumerated array
- ingres_commit() - Commit a transaction
- ingres_rollback() - Roll back a transaction
- ingres_autocommit() - Switch autocommit on or off
- ingres_set_environment() - Set environment features controlling output options
- ingres_errno() - Get the last Ingres error number generated
- ingres_error() - Get a meaningful error message for the last error generated
Вернуться к: Ingres Функции