mysql_character_set_name
mysql_character_set_name returns the name of the default client character set for a specified MariaDB Connector/C connection.
Last updated
Was this helpful?
mysql_character_set_name returns the name of the default client character set for a specified MariaDB Connector/C connection.
const char * mysql_character_set_name(MYSQL * mysql);mysql - a mysql handle, which was previously allocated by mysql_init() or mysql_real_connect().
Returns the default client character set for the specified connection.
The character set name used for the specified connection, or NULL if an error occurred.
This function is deprecated. Instead, use mariadb_get_infov() with option MARIADB_CONNECTION_CHARSET_INFO.
Last updated
Was this helpful?
Was this helpful?

