Join Up!
96811 members and counting!

 
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links 
search for in the  
previousmysql_list_fieldsmysql_list_tablesnext
Last updated: Mon, 28 Oct 2002
view the printer friendly version or the printer friendly version with notes or change language to Czech | Finnish | Spanish

mysql_list_processes

(PHP 4 CVS only)

mysql_list_processes -- Zeigt die MySQL Prozesse an

Beschreibung

resource mysql_list_processes ( [resource Verbindungs-Kennung])

mysql_list_processes() liefert eine Ergebniskennung, die alle laufenden MySQL-Prozesse enthält.

Beispiel 1. mysql_list_processes() Beispiel

<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');

$result = mysql_list_processes($link);
while ($row = mysql_fetch_row($result)){
    printf("%s %s %s %s %s\n", $row["Id"], $row["Host"], $row["db"],
       $row["Command"], $row["Time"]);
}
mysql_free_result ($result);

Das oben gezeigte Beispiel liefert folgende Ausgabe:
1 localhost test Processlist 0
4 localhost mysql sleep 5

Siehe auch: mysql_thread_id()

User Contributed Notes
mysql_list_processes
add a note about notes
There are no user contributed notes for this page.
previousmysql_list_fieldsmysql_list_tablesnext
Last updated: Mon, 28 Oct 2002
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by: http://phpbuilder.com/
Last updated: Thu Oct 31 18:34:28 2002 EST