MySQL 9.1.0
Source Code Documentation
|
Service for conversions, string to buffer and buffer to string. More...
#include <mysql_string.h>
Public Attributes | |
mysql_service_status_t(* | convert_from_buffer )(my_h_string *out_string, const char *in_buffer, uint64 length, const char *charset_name) |
allocates a string object and converts the character buffer to string of specified charset_name. More... | |
mysql_service_status_t(* | convert_to_buffer )(my_h_string in_string, char *out_buffer, uint64 length, const char *charset_name) |
converts the mysql_string to the character set specified by charset_name parameter. More... | |
Service for conversions, string to buffer and buffer to string.
Status: Deprecated, use mysql_string_charset_converter instead.
mysql_service_status_t(* s_mysql_mysql_string_converter::convert_from_buffer) (my_h_string *out_string, const char *in_buffer, uint64 length, const char *charset_name) |
allocates a string object and converts the character buffer to string of specified charset_name.
please call destroy() api to free the allocated string after this api.
[out] | out_string | Pointer to string object handle to set new string to. |
in_buffer | Pointer to the buffer with data to be interpreted as string. | |
length | Length of the buffer to copy into string, in bytes, not in character count. | |
charset_name | charset that is used for conversion. |
false | success |
true | failure |
mysql_service_status_t(* s_mysql_mysql_string_converter::convert_to_buffer) (my_h_string in_string, char *out_buffer, uint64 length, const char *charset_name) |
converts the mysql_string to the character set specified by charset_name parameter.
in_string | Pointer to string object handle to set new string to. | |
[out] | out_buffer | Pointer to the buffer with data to be interpreted as characters. |
length | Length of the buffer to hold out put in characters. | |
charset_name | Handle to charset that is used for conversion. |
false | success |
true | failure |