1mysql_get_character_set_info(3)MariaDB Connector/mCysql_get_character_set_info(3)
2
3
4
5 Name
6 mysql_get_character_set_info - returns character set information
7
8 Synopsis
9 #include <mysql.h>
10
11 void mysql_get_character_set_info(MYSQL * mysql,
12 MY_CHARSET_INFO * charset);
13
14 Description
15 Returns information about the current default character set for the
16 specified connection.
17
18 Parameters
19 • mysql - a connection identifier, which was previously allocated by
20 mysql_init(3) and connected by mysql_real_connect(3).
21
22 • charset - a pointer to a MY_CHARSET_INFO structure, in which the in‐
23 formation will be copied.
24
25 Notes
26 • A complete list of supported character sets in the client library is
27 listed in the function description for mysql_set_character_set(3).
28
29 See also
30 • mariadb_get_infov(3)
31
32 • mysql_set_character_set(3)
33
34
35
36Version 3.2.2 mysql_get_character_set_info(3)