Uses of Interface
org.h2.command.CommandInterface
-
Packages that use CommandInterface 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.jdbc Implementation of the JDBC API (package java.sql).org.h2.server.pg PostgreSQL server implementation of this database. -
-
Uses of CommandInterface in org.h2.command
Classes in org.h2.command that implement CommandInterface Modifier and Type Class Description class
Command
Represents a SQL statement.class
CommandContainer
Represents a single SQL statements.(package private) class
CommandList
Represents a list of SQL statements.class
CommandRemote
Represents the client-side part of a SQL statement. -
Uses of CommandInterface in org.h2.engine
Methods in org.h2.engine that return CommandInterface Modifier and Type Method Description private CommandInterface
SessionRemote. getSettingsCommand(java.lang.String args)
abstract CommandInterface
Session. prepareCommand(java.lang.String sql, int fetchSize)
Parse a command and prepare it for execution.CommandInterface
SessionLocal. prepareCommand(java.lang.String sql, int fetchSize)
CommandInterface
SessionRemote. prepareCommand(java.lang.String sql, int fetchSize)
-
Uses of CommandInterface in org.h2.jdbc
Fields in org.h2.jdbc declared as CommandInterface Modifier and Type Field Description protected CommandInterface
JdbcPreparedStatement. command
private CommandInterface
JdbcResultSet. command
private CommandInterface
JdbcConnection. commit
private CommandInterface
JdbcStatement. executingCommand
private CommandInterface
JdbcConnection. getGeneratedKeys
private CommandInterface
JdbcConnection. getQueryTimeout
private CommandInterface
JdbcConnection. getReadOnly
private CommandInterface
JdbcConnection. rollback
private CommandInterface
JdbcConnection. setQueryTimeout
Methods in org.h2.jdbc that return CommandInterface Modifier and Type Method Description private static CommandInterface
JdbcConnection. closeAndSetNull(CommandInterface command)
(package private) CommandInterface
JdbcConnection. prepareCommand(java.lang.String sql, int fetchSize)
Prepare an command.private CommandInterface
JdbcConnection. prepareCommand(java.lang.String sql, CommandInterface old)
Methods in org.h2.jdbc with parameters of type CommandInterface Modifier and Type Method Description private static CommandInterface
JdbcConnection. closeAndSetNull(CommandInterface command)
(package private) void
JdbcStatement. onLazyResultSetClose(CommandInterface command, boolean closeCommand)
Called when the result set is closed.private CommandInterface
JdbcConnection. prepareCommand(java.lang.String sql, CommandInterface old)
(package private) void
JdbcStatement. setExecutingStatement(CommandInterface c)
INTERNAL.Constructors in org.h2.jdbc with parameters of type CommandInterface Constructor Description JdbcParameterMetaData(Trace trace, JdbcPreparedStatement prep, CommandInterface command, int id)
JdbcResultSet(JdbcConnection conn, JdbcPreparedStatement preparedStatement, CommandInterface command, ResultInterface result, int id, boolean scrollable, boolean updatable, java.util.HashMap<java.lang.String,java.lang.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 CommandInterface Modifier and Type Field Description private CommandInterface
PgServerThread. activeRequest
(package private) CommandInterface
PgServerThread.Prepared. prep
The prepared statement.Methods in org.h2.server.pg with parameters of type CommandInterface Modifier and Type Method Description private void
PgServerThread. executeQuery(PgServerThread.Prepared prepared, CommandInterface prep, int[] resultColumnFormat, int maxRows)
private void
PgServerThread. sendCommandComplete(CommandInterface command, long updateCount)
private void
PgServerThread. setActiveRequest(CommandInterface statement)
-