Edit
by Uttam Paul - 6 months ago (2025-04-30)
I want to execute multiple MySQL queries one after another
| I want to execute multiple MySQL queries one after another, which I want to execute at the same time during accesses from application users accessing the application from different places and different devices. |
Ask clarification
2 Recommendations
This package can prepare and execute SQL queries with MySQL.
It can connect to a given MySQL database server using the MySQLi extension.
The package can prepare and execute prepared queries passing an array of parameter values.
It can return the query results one at a time or all at once in an array.
A separate class can return the details of any errors that may happen during the preparation and execution of the queries.
| by Cedric Maenetja package author 55 - 6 days ago (2025-11-03) Comment
Here's another package that can execute multiple MySQL queries with built-in custom error handling |
MySQL Multi Query: Execute multiple MySQL queries at a time
This class can execute multiple MySQL queries at a time.
It takes an array that defines a lists of MySQL queries and execute them.
The class encapsulates the queries in a transaction.
| by Manuel Lemos 27250 - 2 months ago (2025-08-12) Comment
This package allows you to create a list of SQL queries to execute. Then it executes all queries at once. |