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 classCommandContainerRepresents a single SQL statements.(package private) classCommandListRepresents a list of SQL statements.Fields in org.h2.command declared as Command Modifier and Type Field Description private CommandPrepared. commandprivate CommandCommandList. remainingCommandMethods in org.h2.command that return Command Modifier and Type Method Description CommandParser. 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 voidPrepared. 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 voidInsert. setCommand(Command command)voidMerge. setCommand(Command command) -
Uses of Command in org.h2.engine
Fields in org.h2.engine declared as Command Modifier and Type Field Description private CommandSessionLocal. currentCommandFields in org.h2.engine with type parameters of type Command Modifier and Type Field Description private SmallLRUCache<java.lang.String,Command>SessionLocal. queryCacheMethods in org.h2.engine that return Command Modifier and Type Method Description CommandSessionLocal. getCurrentCommand()CommandSessionLocal. 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 voidSessionLocal. setCurrentCommand(Command command)Set the current command of this session.voidSessionLocal. 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 CommandTcpServerThread. commitMethods in org.h2.server with parameters of type Command Modifier and Type Method Description private voidTcpServerThread. setParameters(Command command)
-