MySQL 8.4.0
Source Code Documentation
s_mysql_mysql_string_case Struct Reference

Service for String case conversions, to lower case and to upper case. More...

#include <mysql_string.h>

Public Attributes

mysql_service_status_t(* tolower )(my_h_string *out_string, my_h_string in_string)
 Convert a String pointed by handle to lower case. More...
 
mysql_service_status_t(* toupper )(my_h_string *out_string, my_h_string in_string)
 Convert a String pointed by handle to upper case. More...
 

Detailed Description

Service for String case conversions, to lower case and to upper case.

Member Data Documentation

◆ tolower

mysql_service_status_t(* s_mysql_mysql_string_case::tolower) (my_h_string *out_string, my_h_string in_string)

Convert a String pointed by handle to lower case.

Conversion depends on the client character set info

Parameters
out_stringHolds the converted lower case string object.
in_stringPointer to string object to be converted.
Returns
Status of performed operation
Return values
falsesuccess
truefailure

◆ toupper

mysql_service_status_t(* s_mysql_mysql_string_case::toupper) (my_h_string *out_string, my_h_string in_string)

Convert a String pointed by handle to upper case.

Conversion depends on the client character set info

Parameters
out_stringHolds the converted upper case string object.
in_stringPointer to string object to be converted.
Returns
Status of performed operation
Return values
falsesuccess
truefailure

The documentation for this struct was generated from the following file: