php-mysqlHow to set a timeout for MySQL query in PHP?
The mysqli_query() function in PHP can be used to set a timeout for a MySQL query. The timeout parameter of the function can be used to set the timeout value in seconds.
$mysqli = new mysqli("localhost", "user", "password", "database");
$query = "SELECT * FROM table";
$result = $mysqli->query($query, MYSQLI_STORE_RESULT, MYSQLI_OPT_CONNECT_TIMEOUT, 10);
The output of the above code will be a mysqli_result object if the query is successful, or FALSE if the query times out.
Code explanation
$mysqli = new mysqli("localhost", "user", "password", "database");: This line creates a newmysqliobject with the given parameters.$query = "SELECT * FROM table";: This line sets the query to be executed.$result = $mysqli->query($query, MYSQLI_STORE_RESULT, MYSQLI_OPT_CONNECT_TIMEOUT, 10);: This line executes the query with a timeout of 10 seconds.
Helpful links
More of Php Mysql
- How to use multiple prepared statements in PHP and MySQL?
- How to get a single value from query in PHP MySQL?
- How to update to null value in MySQL using PHP?
- How to write an update query in MySQL using PHP?
- How to use a MySQL union in PHP?
- How to store a boolean value in a MySQL database using PHP?
- How to output XML from MySQL using PHP?
- How to join tables with PHP and MySQL?
- How to get the version of MySQL using PHP?
See more codes...