dumdumsareyum Posted June 12, 2009 Share Posted June 12, 2009 How do I free the result from a mysqli_multi_query call? I tried using mysqli_free_result, but i'm guessing it's not working because the multi_query only returns a boolean, and I can only find object oriented examples of how to free the multi query and I need a procedural example. Any help? (I am not using any returned data from this call, just inserting some db information and it won't let me make any more database calls until I free the result) Thanks! Link to comment https://forums.phpfreaks.com/topic/161980-mysqli_multi_query-free-result/ Share on other sites More sharing options...
Ken2k7 Posted June 12, 2009 Share Posted June 12, 2009 You'll have to loop through them and free each one. php.net has good examples of it. http://us2.php.net/mysqli.multi-query Link to comment https://forums.phpfreaks.com/topic/161980-mysqli_multi_query-free-result/#findComment-854717 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.