InitializationVariables¶
- 
class oci.mysql.models.InitializationVariables(**kwargs)¶
- Bases: - object- User-defined service variables set only at DB system initialization. These variables cannot be changed later at runtime. - Attributes - LOWER_CASE_TABLE_NAMES_CASE_INSENSITIVE_LOWERCASE- A constant which can be used with the lower_case_table_names property of a InitializationVariables. - LOWER_CASE_TABLE_NAMES_CASE_SENSITIVE- A constant which can be used with the lower_case_table_names property of a InitializationVariables. - lower_case_table_names- Gets the lower_case_table_names of this InitializationVariables. - Methods - __init__(**kwargs)- Initializes a new InitializationVariables object with values from keyword arguments. - 
LOWER_CASE_TABLE_NAMES_CASE_INSENSITIVE_LOWERCASE= 'CASE_INSENSITIVE_LOWERCASE'¶
- A constant which can be used with the lower_case_table_names property of a InitializationVariables. This constant has a value of “CASE_INSENSITIVE_LOWERCASE” 
 - 
LOWER_CASE_TABLE_NAMES_CASE_SENSITIVE= 'CASE_SENSITIVE'¶
- A constant which can be used with the lower_case_table_names property of a InitializationVariables. This constant has a value of “CASE_SENSITIVE” 
 - 
__init__(**kwargs)¶
- Initializes a new InitializationVariables object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - lower_case_table_names (str) – The value to assign to the lower_case_table_names property of this InitializationVariables. Allowed values for this property are: “CASE_SENSITIVE”, “CASE_INSENSITIVE_LOWERCASE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. 
 - 
lower_case_table_names¶
- Gets the lower_case_table_names of this InitializationVariables. Represents the MySQL server system variable lower_case_table_names (https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_lower_case_table_names). - lowerCaseTableNames controls case-sensitivity of tables and schema names and how they are stored in the DB System. - Valid values are:
- CASE_SENSITIVE - (default) Table and schema name comparisons are case-sensitive and stored as specified. (lower_case_table_names=0)
- CASE_INSENSITIVE_LOWERCASE - Table and schema name comparisons are not case-sensitive and stored in lowercase. (lower_case_table_names=1)
 
 - Allowed values for this property are: “CASE_SENSITIVE”, “CASE_INSENSITIVE_LOWERCASE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The lower_case_table_names of this InitializationVariables. - Return type: - str 
 
-