Home >Database >Mysql Tutorial >How to end mysql
There are 5 ways to end a MySQL connection: Use the quit or exit command to close the client. Use the disconnect command. Use the END statement. Use the mysql_close() function in the C API.
How to end the MySQL connection
To end the MySQL connection, you can use the following methods:
1. Use quit
or exit
command
<code>mysql> quit Bye</code>
<code>mysql> exit Bye</code>
2. Close the client
Closing the terminal window or command prompt running the MySQL client will also End the connection.
3. Disconnect
<code>mysql> disconnect</code>
4. Using SQL
You can use END
statement to end the connection, but you need to perform the following operations in the connection:
<code>mysql> END</code>
5. Using the C API
If you use the C API, you can use mysql_close ()
function to close the connection.
Recommendation
For interactive or scripted connections, рекомендуется use the quit
or exit
command as it is The simplest and most direct method. For other types of connections, you may need to choose a different method.
The above is the detailed content of How to end mysql. For more information, please follow other related articles on the PHP Chinese website!