[PHP-DEV] [PATCH] mysqli #35203 / #48065 Eliminate special case for calling procedures in mysqli

2009-04-25 Thread Michael G Schwern
This is a patch against 5.2.9 to fix mysqli::query so a user can call stored procedures the same as they do any other statement. No more multi_query() and next_result() work arounds necessary to avoid a "Commands out of sync" error. I note this has been rejected several times in the tracker as no

[PHP-DEV] Re: [PATCH] mysqli #35203 / #48065 Eliminate special case for calling procedures in mysqli

2009-04-26 Thread Michael G Schwern
Andrey Hristov wrote: > could you show how you want to express that in PHP code that will work > with calling prepared statements. How the API should work? (Example PHP > code that uses the new API). Sorry, I don't understand what you're asking. There is no changes to the mysqli API in this patch

[PHP-DEV] Re: [PATCH] mysqli #35203 / #48065 Eliminate special case for calling procedures in mysqli

2009-05-14 Thread Michael G Schwern
Ping? There's a fully formed patch here, with tests, to fix a mysqli bug. I haven't gotten any feedback. Here's the original message with the patch. http://news.php.net/php.internals/43773 Michael G Schwern wrote: > This is a patch against 5.2.9 to fix mysqli::query so a us