17 lines
359 B
Plaintext
17 lines
359 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.
|
|
|
|
:example
|
|
print("mysql_disconnect is resource-bound; configure the service or connection, then call it in request code.\n");
|