uce/site/doc/pages/mysql_disconnect.txt

19 lines
428 B
Plaintext

:sig
void mysql_disconnect(MySQL* m)
:params
m : pointer to an existing MySQL connection struct
:see
>mysql
:content
Closes an existing connection to a MySQL server.
Call this when you are done using a `MySQL*` connection handle.
Related:
- PHP: modern database access through `mysqli_*` or PDO methods rather than the old `mysql_*` family
- JavaScript / Node.js: clients such as `mysql2`, query builders, or ORM adapters