Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8896777
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:09:51+00:00 2026-06-15T00:09:51+00:00

How can I close (KILL) connections that take too long to execute using MySQL

  • 0

How can I close (KILL) connections that take too long to execute using MySQL and PHP

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T00:09:52+00:00Added an answer on June 15, 2026 at 12:09 am

    The solution is to write a Stored Procedure that kills all the connections above some time:

    DELIMITER //
    DROP PROCEDURE IF EXISTS ClearDB//
    CREATE PROCEDURE ClearDB()
    BEGIN
        DECLARE nID, bCursor INT;
        DECLARE cursorQuery CURSOR FOR 
            SELECT ID
            FROM information_schema.processlist
            WHERE `TIME` > 10;
        DECLARE CONTINUE HANDLER FOR NOT FOUND SET bCursor = 1;
    
        OPEN cursorQuery;
        SET bCursor = 0;
    
        WHILE bCursor = 0 DO
            FETCH cursorQuery INTO nID;
            KILL nID;
        END WHILE;
    
        CLOSE cursorQuery;
    END //
    DELIMITER ;
    

    The procedure is pretty straightforward:
    Get all the connection IDs with TIME greater then 10, loop through the results and kill them

    And you can make a cron task to call the ClearDB() procedure or you can call it every time you open up a new connection like that:

    $pDB = new mysqli('localhost', 'user', 'pass', 'database');
    if ($pDB->connect_error) 
    {
        // Handle the error
    }
    $pDB->query('CALL ClearDB()');
    

    Hope it will help someone 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've an application that you can show and close several Dialogs with: showDialog(...) removeDialog(...)
I do get that we easily can set the Close button text to a
I want to write a program that can not close it In other words,
Edit: We can close. Isn't truly asynchronous, non-blocking javascript impossible? var PATH = require
Can we close WPF window after InitializeComponent() if any validation fails? I am validating
How can I close any Office 2007 running application like Word,Excel,Outlook before installing an
Just for fun, how close can we get to debug an application in C#
When a UIDocument is closed, can it close again? Even when it's documentState is
How i can show a close button after certain elapsed, i tried settimeout but
I did search, and got a cloeset answer form How can I automatically close

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.