Uses of Interface
org.h2.command.CommandInterface
Packages that use CommandInterface
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains high level classes of the database and classes that don't fit in another sub-package.
Implementation of the JDBC API (package java.sql).
PostgreSQL server implementation of this database.
-
Uses of CommandInterface in org.h2.command
Classes in org.h2.command that implement CommandInterfaceModifier and TypeClassDescriptionclassRepresents a SQL statement.classRepresents a single SQL statements.(package private) classRepresents a list of SQL statements.classRepresents the client-side part of a SQL statement. -
Uses of CommandInterface in org.h2.engine
Methods in org.h2.engine that return CommandInterfaceModifier and TypeMethodDescriptionprivate CommandInterfaceSessionRemote.getSettingsCommand(String args) abstract CommandInterfaceSession.prepareCommand(String sql, int fetchSize) Parse a command and prepare it for execution.SessionLocal.prepareCommand(String sql, int fetchSize) SessionRemote.prepareCommand(String sql, int fetchSize) -
Uses of CommandInterface in org.h2.jdbc
Fields in org.h2.jdbc declared as CommandInterfaceModifier and TypeFieldDescriptionprotected CommandInterfaceJdbcPreparedStatement.commandprivate final CommandInterfaceJdbcResultSet.commandprivate CommandInterfaceJdbcConnection.commitprivate CommandInterfaceJdbcStatement.executingCommandprivate CommandInterfaceJdbcConnection.getGeneratedKeysprivate CommandInterfaceJdbcConnection.getQueryTimeoutprivate CommandInterfaceJdbcConnection.getReadOnlyprivate CommandInterfaceJdbcConnection.rollbackprivate CommandInterfaceJdbcConnection.setQueryTimeoutMethods in org.h2.jdbc that return CommandInterfaceModifier and TypeMethodDescriptionprivate static CommandInterfaceJdbcConnection.closeAndSetNull(CommandInterface command) (package private) CommandInterfaceJdbcConnection.prepareCommand(String sql, int fetchSize) Prepare an command.private CommandInterfaceJdbcConnection.prepareCommand(String sql, CommandInterface old) Methods in org.h2.jdbc with parameters of type CommandInterfaceModifier and TypeMethodDescriptionprivate static CommandInterfaceJdbcConnection.closeAndSetNull(CommandInterface command) (package private) voidJdbcStatement.onLazyResultSetClose(CommandInterface command, boolean closeCommand) Called when the result set is closed.private CommandInterfaceJdbcConnection.prepareCommand(String sql, CommandInterface old) (package private) voidJdbcStatement.setExecutingStatement(CommandInterface c) INTERNAL.Constructors in org.h2.jdbc with parameters of type CommandInterfaceModifierConstructorDescription(package private)JdbcParameterMetaData(Trace trace, JdbcPreparedStatement prep, CommandInterface command, int id) (package private)JdbcResultSet(JdbcConnection conn, JdbcPreparedStatement preparedStatement, CommandInterface command, ResultInterface result, int id, boolean scrollable, boolean updatable, HashMap<String, Integer> columnLabelMap) JdbcResultSet(JdbcConnection conn, JdbcStatement stat, CommandInterface command, ResultInterface result, int id, boolean scrollable, boolean updatable, boolean triggerUpdatable) -
Uses of CommandInterface in org.h2.server.pg
Fields in org.h2.server.pg declared as CommandInterfaceModifier and TypeFieldDescriptionprivate CommandInterfacePgServerThread.activeRequest(package private) CommandInterfacePgServerThread.Prepared.prepThe prepared statement.Methods in org.h2.server.pg with parameters of type CommandInterfaceModifier and TypeMethodDescriptionprivate voidPgServerThread.executeQuery(PgServerThread.Prepared prepared, CommandInterface prep, int[] resultColumnFormat, int maxRows) private voidPgServerThread.sendCommandComplete(CommandInterface command, long updateCount) private voidPgServerThread.setActiveRequest(CommandInterface statement)