-
Notifications
You must be signed in to change notification settings - Fork 260
mariadb_get_charset_by_name
Georg Richter edited this page Jun 10, 2023
·
1 revision
mariadb_get_charset_by_name - returns character set information for the specified character set name
#include <mysql.h>
MARIADB_CHARSET_INFO *mariadb_get_charset_by_name(const char *cs_name)
Returns information about the specified character set name.
-
cs_name
- a character set name.
Returns a pointer to MARIADB_CHARSET_INFO structure, or NULL if the specified character set name could not be found.
- A complete list of supported character sets in the client library is listed in the function description for mysql_set_character_set().
MariaDB Connector/C Reference