Package org.h2.engine
Class Session.StaticSettings
java.lang.Object
org.h2.engine.Session.StaticSettings
- Enclosing class:
- Session
Static settings.
-
Field Summary
Modifier and TypeFieldDescriptionfinal boolean
Whether all identifiers are case insensitive.final boolean
Whether unquoted identifiers are converted to lower case.final boolean
Whether unquoted identifiers are converted to upper case. -
Constructor Summary
ConstructorDescriptionStaticSettings
(boolean databaseToUpper, boolean databaseToLower, boolean caseInsensitiveIdentifiers) Creates new instance of static settings. -
Method Summary
-
Field Details
-
databaseToUpper
public final boolean databaseToUpperWhether unquoted identifiers are converted to upper case. -
databaseToLower
public final boolean databaseToLowerWhether unquoted identifiers are converted to lower case. -
caseInsensitiveIdentifiers
public final boolean caseInsensitiveIdentifiersWhether all identifiers are case insensitive.
-
-
Constructor Details
-
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
-