| I. | Na początek | |
| II. | Instalacja i konfiguracja | |
| III. | Opis języka | |
| IV. | Bezpieczeństwo | |
| V. | Możliwości | |
| VI. | Opis funkcji | |
| VII. | Zend API | |
| VIII. | PHP API: Interfejs rozszerzeń | |
| X. | Dodatki | |
Copyright © 1997-2006 the PHP Documentation Group
(PHP 5)
mysqli_kill(no version information, might be only in CVS)
mysqli->kill -- Asks the server to kill a MySQL threadProcedural style:
bool mysqli_kill ( mysqli link, int processid )Object oriented style (method)
class mysqli {This function is used to ask the server to kill a MySQL thread specified by the processid parameter. This value must be retrieved by calling the mysqli_thread_id() function.
Notatka: To stop a running query you should use the SQL command KILL QUERY processid.
Przykład 2. Procedural style
|
Powyższy przykład wyświetli:
Error: MySQL server has gone away |
| Poprzedni | Spis treści | Następny |
| mysqli_insert_id | Początek rozdziału | mysqli_master_query |