|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Command | |
|---|---|
| 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. |
| Uses of Command in org.h2.command |
|---|
| Subclasses of Command in org.h2.command | |
|---|---|
class |
CommandContainer
Represents a single SQL statements. |
class |
CommandList
Represents a list of SQL statements. |
| Methods in org.h2.command that return Command | |
|---|---|
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 | |
|---|---|
void |
Prepared.setCommand(Command command)
Set the command. |
| Constructors in org.h2.command with parameters of type Command | |
|---|---|
CommandList(Parser parser,
java.lang.String sql,
Command c,
java.lang.String remaining)
|
|
| Uses of Command in org.h2.command.dml |
|---|
| Methods in org.h2.command.dml with parameters of type Command | |
|---|---|
void |
Insert.setCommand(Command command)
|
void |
Merge.setCommand(Command command)
|
| Uses of Command in org.h2.engine |
|---|
| Methods in org.h2.engine that return Command | |
|---|---|
Command |
Session.getCurrentCommand()
|
Command |
Session.prepareLocal(java.lang.String sql)
Parse and prepare the given SQL statement. |
| Methods in org.h2.engine with parameters of type Command | |
|---|---|
void |
Session.setCurrentCommand(Command command)
Set the current command of this session. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||