Show / Hide Table of Contents

Class InitializationVariables

User-defined service variables set only at DB system initialization. These variables cannot be changed later at runtime.

Inheritance
object
InitializationVariables
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class InitializationVariables

Properties

LowerCaseTableNames

Declaration
[JsonProperty(PropertyName = "lowerCaseTableNames")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InitializationVariables.LowerCaseTableNamesEnum? LowerCaseTableNames { get; set; }
Property Value
Type Description
InitializationVariables.LowerCaseTableNamesEnum?

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)
In this article
Back to top