mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
34 lines
781 B
Groff
34 lines
781 B
Groff
|
.\" Automatically generated by Pandoc 2.5
|
||
|
.\"
|
||
|
.TH "mysql_server_end" "3" "" "Version 3.2.2" "MariaDB Connector/C"
|
||
|
.hy
|
||
|
.SS Name
|
||
|
.PP
|
||
|
mysql_server_end \- Called when finished using MariaDB Connector/C
|
||
|
.SS Synopsis
|
||
|
.IP
|
||
|
.nf
|
||
|
\f[C]
|
||
|
#include <mysql.h>
|
||
|
|
||
|
void mysql_server_end(void)
|
||
|
\f[R]
|
||
|
.fi
|
||
|
.SS Description
|
||
|
.PP
|
||
|
Call when finished using the library, such as after disconnecting from
|
||
|
the server.
|
||
|
For a client program, only cleans up by performing memory management
|
||
|
tasks.
|
||
|
.SS Notes
|
||
|
.IP \[bu] 2
|
||
|
\f[C]mysql_library_end()\f[R] is an alias for
|
||
|
\f[C]mysql_server_end()\f[R].
|
||
|
.IP \[bu] 2
|
||
|
In MySQL Connector/C versions 3.0.1 to 3.0.4 it was not possible to call
|
||
|
multiple times \f[B]mysql_server_init(3)\f[R] and
|
||
|
\f[C]mysql_server_end()\f[R].
|
||
|
.SS See also
|
||
|
.IP \[bu] 2
|
||
|
\f[B]mysql_server_init(3)\f[R]
|