Uses of Class
org.h2.engine.Mode
-
Packages that use Mode Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.expression.function Functions.org.h2.jdbc Implementation of the JDBC API (package java.sql).org.h2.value Data type and value implementations. -
-
Uses of Mode in org.h2.command
Methods in org.h2.command with parameters of type Mode Modifier and Type Method Description private Prepared
Parser. parseAlterTableCompatibility(Schema schema, java.lang.String tableName, boolean ifTableExists, Mode mode)
private boolean
Parser. parseCompatibilityIdentity(Column column, Mode mode)
private void
Parser. parseInsertCompatibility(Insert command, Table table, Mode mode)
-
Uses of Mode in org.h2.engine
Fields in org.h2.engine declared as Mode Modifier and Type Field Description private Mode
Database. mode
Mode
Session.DynamicSettings. mode
The database mode.Fields in org.h2.engine with type parameters of type Mode Modifier and Type Field Description private static java.util.HashMap<java.lang.String,Mode>
Mode. MODES
Methods in org.h2.engine that return Mode Modifier and Type Method Description static Mode
Mode. getInstance(java.lang.String name)
Get the mode with the given name.Mode
CastDataProvider. getMode()
Returns the database mode.Mode
Database. getMode()
Mode
SessionLocal. getMode()
Mode
SessionRemote. getMode()
static Mode
Mode. getRegular()
Methods in org.h2.engine with parameters of type Mode Modifier and Type Method Description private static void
Mode. add(Mode mode)
void
Database. setMode(Mode mode)
Constructors in org.h2.engine with parameters of type Mode Constructor Description DynamicSettings(Mode mode, TimeZoneProvider timeZone)
Creates new instance of dynamic settings. -
Uses of Mode in org.h2.expression.function
Methods in org.h2.expression.function with parameters of type Mode Modifier and Type Method Description private static java.lang.String
StringFunction1. rawToHex(Value v, Mode mode)
-
Uses of Mode in org.h2.jdbc
Methods in org.h2.jdbc that return Mode Modifier and Type Method Description Mode
JdbcConnection. getMode()
-
Uses of Mode in org.h2.value
Methods in org.h2.value with parameters of type Mode Modifier and Type Method Description static DataType
DataType. getTypeByName(java.lang.String s, Mode mode)
Get a data type object from a type name.
-