![]() |
MySQL 9.5.0
Source Code Documentation
|
Service for String c_type. More...
#include <mysql_string.h>
Public Attributes | |
| mysql_service_status_t(* | is_upper )(my_h_string_iterator iter, bool *out) |
| Checks if character on current position the iterator points to is an upper case. More... | |
| mysql_service_status_t(* | is_lower )(my_h_string_iterator iter, bool *out) |
| Checks if character on current position the iterator points to is a lower case. More... | |
| mysql_service_status_t(* | is_digit )(my_h_string_iterator iter, bool *out) |
| Checks if character on current position the iterator points to is a digit. More... | |
Service for String c_type.
| mysql_service_status_t(* s_mysql_mysql_string_ctype::is_digit) (my_h_string_iterator iter, bool *out) |
Checks if character on current position the iterator points to is a digit.
| iter | String iterator object handle to advance. | |
| [out] | out | Pointer to bool value to store if character is a digit. |
| false | success |
| true | failure |
| mysql_service_status_t(* s_mysql_mysql_string_ctype::is_lower) (my_h_string_iterator iter, bool *out) |
Checks if character on current position the iterator points to is a lower case.
| iter | String iterator object handle to advance. | |
| [out] | out | Pointer to bool value to store if character is a lower case. |
| false | success |
| true | failure |
| mysql_service_status_t(* s_mysql_mysql_string_ctype::is_upper) (my_h_string_iterator iter, bool *out) |
Checks if character on current position the iterator points to is an upper case.
| iter | String iterator object handle to advance. | |
| [out] | out | Pointer to bool value to store if character is an upper case. |
| false | success |
| true | failure |