Package org.h2.engine
Class Session.StaticSettings
- java.lang.Object
-
- org.h2.engine.Session.StaticSettings
-
- Enclosing class:
- Session
public static final class Session.StaticSettings extends java.lang.ObjectStatic settings.
-
-
Field Summary
Fields Modifier and Type Field Description booleancaseInsensitiveIdentifiersWhether all identifiers are case insensitive.booleandatabaseToLowerWhether unquoted identifiers are converted to lower case.booleandatabaseToUpperWhether unquoted identifiers are converted to upper case.
-
Constructor Summary
Constructors Constructor Description StaticSettings(boolean databaseToUpper, boolean databaseToLower, boolean caseInsensitiveIdentifiers)Creates new instance of static settings.
-
-
-
Field Detail
-
databaseToUpper
public final boolean databaseToUpper
Whether unquoted identifiers are converted to upper case.
-
databaseToLower
public final boolean databaseToLower
Whether unquoted identifiers are converted to lower case.
-
caseInsensitiveIdentifiers
public final boolean caseInsensitiveIdentifiers
Whether all identifiers are case insensitive.
-
-
Constructor Detail
-
StaticSettings
public StaticSettings(boolean databaseToUpper, boolean databaseToLower, boolean caseInsensitiveIdentifiers)Creates new instance of static settings.- Parameters:
databaseToUpper- whether unquoted identifiers are converted to upper casedatabaseToLower- whether unquoted identifiers are converted to lower casecaseInsensitiveIdentifiers- whether all identifiers are case insensitive
-
-