Deprecated: Optional parameter $keys declared before required parameter $cms_id is implicitly treated as a required parameter in /home/www/dev/work/class/blog/CmsKey.php on line 75

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$title is deprecated in /home/www/dev/work/website/lvesu/class/controller/blog/php.php on line 28

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$outlink is deprecated in /home/www/dev/work/website/lvesu/template/blog/cms/php.manual.tpl on line 2

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$status is deprecated in /home/www/dev/work/website/lvesu/template/blog/index.head.php on line 2
PHP - Manual: ingres_fetch_proc_return - 互联网笔记

略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ingres_fetch_proc_return

2025-05-19

ingres_fetch_proc_return

(PECL ingres >= 1.4.0)

ingres_fetch_proc_returnGet the return value from a procedure call

说明

ingres_fetch_proc_return ( resource $result ) : int

This function is used to retrieve the return value following the execution of an Ingres database procedure (stored procedure).

Note:

If used with a row-producing procedure, this function should be called after all the rows from the procedure have been fetched using ingres_fetch_array(), ingres_fetch_object() or ingres_fetch_row(). This function will eliminate any rows yet to be fetched should there be any left over.

参数

result

The result identifier for a query

返回值

Returns an integer if there is a return value otherwise it will return NULL.

范例

Example #1 Get the return value from a procedure call

<?php

$link 
ingres_connect($database);

if ( 
ingres_errno() != ) {
    
$error_text ingres_error();
    die(
$error_text);
}

$result ingres_query($link"execute procedure php_proc (value = 1000)");

if ( 
ingres_errno() != ) {
    
$error_text ingres_error();
    die(
$error_text);
}

echo 
"return value - " ingres_fetch_proc_return($result) . "\n";

ingres_close($link);

?>

参见

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-fetch-proc-return.php

冷却塔厂家 广告
中文GPT4.0无需注册 广告
北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3