Uses of Class
org.h2.command.Command
-
Packages that use Command Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.command.dml Contains DML (data manipulation language) and related SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.server A small FTP server. -
-
Uses of Command in org.h2.command
Subclasses of Command in org.h2.command Modifier and Type Class Description class
CommandContainer
Represents a single SQL statements.(package private) class
CommandList
Represents a list of SQL statements.Fields in org.h2.command declared as Command Modifier and Type Field Description private Command
Prepared. command
private Command
CommandList. remainingCommand
Methods in org.h2.command that return Command Modifier and Type Method Description Command
Parser. prepareCommand(java.lang.String sql)
Parse a statement or a list of statements, and prepare it for execution.Methods in org.h2.command with parameters of type Command Modifier and Type Method Description void
Prepared. setCommand(Command command)
Set the command. -
Uses of Command in org.h2.command.dml
Methods in org.h2.command.dml with parameters of type Command Modifier and Type Method Description void
Insert. setCommand(Command command)
void
Merge. setCommand(Command command)
-
Uses of Command in org.h2.engine
Fields in org.h2.engine declared as Command Modifier and Type Field Description private Command
SessionLocal. currentCommand
Fields in org.h2.engine with type parameters of type Command Modifier and Type Field Description private SmallLRUCache<java.lang.String,Command>
SessionLocal. queryCache
Methods in org.h2.engine that return Command Modifier and Type Method Description Command
SessionLocal. getCurrentCommand()
Command
SessionLocal. prepareLocal(java.lang.String sql)
Parse and prepare the given SQL statement.Methods in org.h2.engine with parameters of type Command Modifier and Type Method Description private void
SessionLocal. setCurrentCommand(Command command)
Set the current command of this session.void
SessionLocal. startStatementWithinTransaction(Command command)
Start a new statement within a transaction. -
Uses of Command in org.h2.server
Fields in org.h2.server declared as Command Modifier and Type Field Description private Command
TcpServerThread. commit
Methods in org.h2.server with parameters of type Command Modifier and Type Method Description private void
TcpServerThread. setParameters(Command command)
-