Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

उपयोगकर्ता निरस्त करने पर MySQL क्वेरी को मारें

रुचि रखने वालों के लिए, मैंने इसका उपयोग किया है:

<?php
// Connection to query on
$query_con = mysqli_connect($host, $user, $password, $name, $port);

// Connection to kill on
$kill_con = mysqli_connect($host, $user, $password, $name, $port);

// Start the query
$query_con->query($slow_query, MYSQLI_ASYNC);

// Get the PID
$thread_id = $query_con->thread_id;

// Ignore user abort so we can kill the query
ignore_user_abort(true);

do  {
    // Poll MySQL
    $links = $errors = $reject = array($mysqli->mysqli);
    $poll = mysqli_poll($links, $errors, $reject, 0, 500000);

    // Check if the connection is aborted and the query was killed
    if (connection_aborted() && mysqli_kill($kill_con, $thread_id)) {
        die();
    }
} while (!$poll);

// Not aborted, so do stuff with the result
$result = $link->reap_async_query();
if (is_object($result)) {
    // Select
    while ($row = $result->fetch_object()) {
        var_dump($row);
    }
} else {
    // Insert/update/delete
    var_dump($result);
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. इवेंट शेड्यूलर स्थिति की जांच कैसे करें mysql

  2. Neo4j ब्राउज़र

  3. JPQL में LIMIT क्लॉज विकल्प क्या है?

  4. MySQL FIND_IN_SET () अपेक्षानुसार काम नहीं कर रहा है

  5. mysqli और php . का उपयोग करने में कॉलम का योग