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 classCommandRepresents a SQL statement.classCommandContainerRepresents a single SQL statements.(package private) classCommandListRepresents a list of SQL statements.classCommandRemoteRepresents 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 CommandInterfaceSessionRemote. getSettingsCommand(java.lang.String args)abstract CommandInterfaceSession. prepareCommand(java.lang.String sql, int fetchSize)Parse a command and prepare it for execution.CommandInterfaceSessionLocal. prepareCommand(java.lang.String sql, int fetchSize)CommandInterfaceSessionRemote. 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 CommandInterfaceJdbcPreparedStatement. commandprivate CommandInterfaceJdbcResultSet. commandprivate CommandInterfaceJdbcConnection. commitprivate CommandInterfaceJdbcStatement. executingCommandprivate CommandInterfaceJdbcConnection. getGeneratedKeysprivate CommandInterfaceJdbcConnection. getQueryTimeoutprivate CommandInterfaceJdbcConnection. getReadOnlyprivate CommandInterfaceJdbcConnection. rollbackprivate CommandInterfaceJdbcConnection. setQueryTimeoutMethods in org.h2.jdbc that return CommandInterface Modifier and Type Method Description private static CommandInterfaceJdbcConnection. closeAndSetNull(CommandInterface command)(package private) CommandInterfaceJdbcConnection. prepareCommand(java.lang.String sql, int fetchSize)Prepare an command.private CommandInterfaceJdbcConnection. prepareCommand(java.lang.String sql, CommandInterface old)Methods in org.h2.jdbc with parameters of type CommandInterface Modifier and Type Method Description private static CommandInterfaceJdbcConnection. closeAndSetNull(CommandInterface command)(package private) voidJdbcStatement. onLazyResultSetClose(CommandInterface command, boolean closeCommand)Called when the result set is closed.private CommandInterfaceJdbcConnection. prepareCommand(java.lang.String sql, CommandInterface old)(package private) voidJdbcStatement. 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 CommandInterfacePgServerThread. activeRequest(package private) CommandInterfacePgServerThread.Prepared. prepThe prepared statement.Methods in org.h2.server.pg with parameters of type CommandInterface Modifier and Type Method Description private voidPgServerThread. executeQuery(PgServerThread.Prepared prepared, CommandInterface prep, int[] resultColumnFormat, int maxRows)private voidPgServerThread. sendCommandComplete(CommandInterface command, long updateCount)private voidPgServerThread. setActiveRequest(CommandInterface statement)
-