|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-11-29 08:04 UTC] mail at daniel-berlin dot de
[2017-04-01 20:48 UTC] tpunt@php.net
-Status: Open
+Status: Wont fix
[2017-04-01 20:48 UTC] tpunt@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 21:00:01 2025 UTC |
Description: ------------ The close_long_data method of the maxdb_stmt object is missing. Reproduce code: --------------- $q = $maxdb->stmt_init(); $q->prepare("..."); $q->bind_param("...", array(...)); $q->execute() $q->send_long_data(2, "..."); $q->close_long_data(2); ----------------------- Fix: --- maxdb-7.6.00.38/php_maxdb.c 2007-04-20 13:11:08.000000000 +0200 +++ maxdb/php_maxdb.c 2007-11-29 10:03:01.000000000 +0100 @@ -417,6 +417,7 @@ PHP_FALIAS(result_metadata, maxdb_stmt_result_metadata,NULL) PHP_FALIAS(num_rows, maxdb_stmt_num_rows,NULL) PHP_FALIAS(send_long_data,maxdb_stmt_send_long_data,NULL) + PHP_FALIAS(close_long_data,maxdb_stmt_close_long_data,NULL) PHP_FALIAS(stmt,maxdb_prepare,NULL) PHP_FALIAS(free_result,maxdb_stmt_free_result,NULL) PHP_FALIAS(reset,maxdb_stmt_reset,NULL) Actual result: -------------- PHP Fatal error: Call to undefined method maxdb_stmt::close_long_data() in /srv/www/htdocs/...