1mysql_server_end(3) MariaDB Connector/C mysql_server_end(3)
2
3
4
5 Name
6 mysql_server_end - Called when finished using MariaDB Connector/C
7
8 Synopsis
9 #include <mysql.h>
10
11 void mysql_server_end(void)
12
13 Description
14 Call when finished using the library, such as after disconnecting from
15 the server. For a client program, only cleans up by performing memory
16 management tasks.
17
18 Notes
19 • mysql_library_end() is an alias for mysql_server_end().
20
21 • In MySQL Connector/C versions 3.0.1 to 3.0.4 it was not possible to
22 call multiple times mysql_server_init(3) and mysql_server_end().
23
24 See also
25 • mysql_server_init(3)
26
27
28
29Version 3.2.2 mysql_server_end(3)